7a37869a3d
Emacs mode for editing Python code. ok rpointel@
6 lines
229 B
Plaintext
6 lines
229 B
Plaintext
You may wish to add the following to your .emacs:
|
|
|
|
(autoload 'python-mode "python-mode" "Python Mode." t)
|
|
(add-to-list 'auto-mode-alist '("\\.py\\'" . python-mode))
|
|
(add-to-list 'interpreter-mode-alist '("python" . python-mode))
|