配置Emacs为Python开发环境


1.下载python-mode,地址:
http://sourceforge.net/projects/python-mode

文件:
python-mode-1.0.tar.gz
大小:
53KB
下载:
下载
2. 字节编译,在emacs中输入命令:
    C-x C-f /path/to/python-mode.el RET
    M-x byte-compile-file RET
5. 确保python-mode.el在加载路径中,测试方法:
    M-x locate-library RET python-mode RET
   如果没有,加入下面一行到的.emacs文件中:
    (setq load-path (cons "/dir/of/python-mode/" load-path))
6. 文件关联,自动将py后缀的文件和pyhton-mod关联,在.emacs文件中添加:
    (setq auto-mode-alist (cons '("
.py$
" . python-mode) auto-mode-alist))
    (setq interpreter-mode-alist (cons '("python" . python-mode) interpreter-mode-alist))
7. 自动加载,将 python-mode 和文件 python-mode.elc关联,在.emacs文件中添加:
    (autoload 'python-mode "python-mode" "Python editing mode." t)
8. 语法加亮,在.emacs文件中添加:
    ;;; add these lines if you like color-based syntax highlighting
    (global-font-lock-mode t)
    (setq font-lock-maximum-decoration t)