mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 15:20:32 -04:00
4 lines
205 B
Text
4 lines
205 B
Text
To use python-mode in Emacs, add the following lines to your ~/.emacs:
|
|
|
|
(autoload 'python-mode "python-mode" "Mode for editing Python source files")
|
|
(add-to-list 'auto-mode-alist '("\\.py" . python-mode))
|