将Emacs作为Python集成开发环境

发布时间:2019-09-12 07:55:41编辑:auto阅读(1400)

     Python是我很喜欢的一种编程语言,而Emacs则是编辑器中的佼佼者。Emacs本身提供了python-mode,输入M-x python-mode,就可以进入python模式。相应地,会在菜单栏出现Python菜单。当然,一般来讲,如果是.py文件打开的话,也会自动进入该模式。
            不过,默认的python模式功能上面用起来还是有点弱,而且许多地方做的并不好,最好下载第三方的python模式。python-mode是一个开源项目,可以在https://launchpad.net/python-mode进行下载。
            1.安装
            1).安装prog-modes: aptitude install prolog-el
            2).下载python-mode.el文件在项目主页上面。
            3).编译:C-x C-f /path/to/python-mode.el RET
                    M-x byte-compile-file RET
            4).在.emacs中加入python-mode.el路径:
            (setq load-path (cons "/dir/of/python-mode/" load-path))
            检测扩展是否加载路径,测试方法:M-x locate-library RET python-mode RET
            2.配置.emacs文件
    (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)

    ;;; add these lines if you like color-based syntax highlighting

    (global-font-lock-mode t)

    (setq font-lock-maximum-decoration t)

    (set-language-environment 'Chinese-GB)

    (set-keyboard-coding-system 'euc-cn)

    (set-clipboard-coding-system 'euc-cn)

    (set-terminal-coding-system 'euc-cn)

    (set-buffer-file-coding-system 'euc-cn)

    (set-selection-coding-system 'euc-cn)

    (modify-coding-system-alist 'process "*" 'euc-cn)

    (setq default-process-coding-system 

     '(euc-cn . euc-cn))

    (setq-default pathname-coding-system 'euc-cn)

          3.操作
          1).执行:C-c C-c,这样会在新的窗口及缓冲区执行脚本;
          2).C-j:以相同的缩进插入新的一行;
          3).C-M-a:跳至函数或类首;
          4).C-M-e:跳至函数或类尾;
          5).C-c C-w:运行PyChecker进行代码检测;
    大体的使用方式就是这样的了,另外,还有许多类或函数的模板可以通过快捷键进行,在今后常用的时候会加强了解的。感谢你能看到这里!


    本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/15586/showart_1171325.html

     

关键字