el-get/recipes/python-mode.rcp
2012-02-22 14:46:21 -08:00

14 lines
564 B
Plaintext

(: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 (progn
(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)))