我无法在 Mac OS X 上的 Emacs 中使用 python 模式(我是相对的 OS X 新手,不完全是 Elisp 专家)。
我从http://emacsformacosx.com/安装了 Emacs 。该版本报告为“bob.porkrind.org 上 2011-12-13 的 GNU Emacs 23.3.1 (x86_64-apple-darwin, NS apple-appkit-1038.36)”
我的~/.emacs
文件中有以下几行:
(add-to-list 'load-path "/Applications/Emacs.app/Contents/Resources/lisp/progmodes")
(setq auto-mode-alist
(cons '("\\.py$" . python-mode) auto-mode-alist))
(setq interpreter-mode-alist
(cons '("python" . python-mode) interpreter-mode-alist))
(autoload 'python-mode "python-mode" "Python Editing Mode" t)
但是每当我加载带有.py
扩展名的文件时,模式仍然是Fundamental
.