將Emacs作為Python整合式開發環境

來源:互聯網
上載者:User

 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

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.