el-get/recipes/python-mode.rcp

14 lines
550 B
Plaintext
Raw Normal View History

(:name python-mode
:type emacsmirror
:description "Major mode for editing Python programs"
:features (python-mode doctest-mode)
:compile nil
:load "test/doctest-mode.el"
:prepare (progn
(autoload 'python-mode "python-mode"
"Python editing mode." t)
(add-to-list 'auto-mode-alist
'("\\.py$" . python-mode))
(add-to-list 'interpreter-mode-alist
'("python" . python-mode))))