/usr/share/el-get/recipes/python-mode.rcp is in el-get 3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | (:name python-mode
:type emacsmirror
:description "Major mode for editing Python programs"
:features (python-mode doctest-mode)
:compile nil
:load "test/doctest-mode.el"
:post-init (lambda ()
(add-to-list 'auto-mode-alist '("\\.py$" . python-mode))
(add-to-list 'interpreter-mode-alist '("python" . python-mode))
(autoload 'python-mode "python-mode" "Python editing mode." t)))
|