el-get/recipes/python-mode.rcp

11 lines
456 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 (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)))