el-get/recipes/python-mode.el
Dimitri Fontaine 88380ca334 Add ':description' for recipes without it
Conflicts:

	recipes/bookmark+.el
	recipes/color-theme-zenburn.el
	recipes/dired-plus.el
	recipes/imaxima.el
	recipes/js2-mode.el
	recipes/nxhtml.el
	recipes/python-mode.el
	recipes/python-pep8.el
	recipes/rvm.el
	recipes/smartchr.el
	recipes/tuareg-mode.el
2011-08-14 19:04:26 +02:00

10 lines
420 B
EmacsLisp

(:name python-mode
:type emacsmirror
:description "Major mode for editing Python programs"
:features (python-mode doctest-mode)
:compile nil
: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)))