文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>配置Emacs为Python开发环境

配置Emacs为Python开发环境

时间:2007-01-06  来源:linxh

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)

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载