將Emacs作為Python整合開發環境
阿新 • • 發佈:2019-01-07
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進行程式碼檢測;
大體的使用方式就是這樣的了,另外,還有許多類或函式的模板可以通過快捷鍵進行,在今後常用的時候會加強了解的。感謝你能看到這裡!
不過,預設的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進行程式碼檢測;
大體的使用方式就是這樣的了,另外,還有許多類或函式的模板可以通過快捷鍵進行,在今後常用的時候會加強了解的。感謝你能看到這裡!