Emacs基礎(chǔ)
同樣,本文也不會過多介紹Emacs使用的基礎(chǔ)知識。學(xué)習(xí)Emacs最容易的方法,就是通過其自帶的教程。本文介紹的內(nèi)容并不要求你知道如何使用Emacs;相反,本文的每一部分講述的都是你學(xué)習(xí)基礎(chǔ)知識后可以使用的。
你可以使用方向鍵將光標(biāo)移動(dòng)到標(biāo)有“Emacs Tutorial”字樣的地方,然后按回車鍵,就可以打開自帶教程。然后,你將會看到下面這段話:
Emacs commands generally involve the CONTROL key (sometimes labeled
CTRL or CTL) or the META key (sometimes labeled EDIT or ALT). Rather than
write that in full each time, we'll use the following abbreviations:
C-<chr> means hold the CONTROL key while typing the character <chr>
Thus, C-f would be: hold the CONTROL key and type f.
M-<chr> means hold the META or EDIT or ALT key down while typing <chr>.
If there is no META, EDIT or ALT key, instead press and release the
ESC key and then type <chr>. We write <ESC> for the ESC key.
接下來,本文還會繼續(xù)出現(xiàn)類似C-x C-s等按鍵命令。這些命令表示,要同時(shí)按下Control鍵和x鍵,然后再同時(shí)按下Control和s鍵。這正是使用Emacs編輯器的基本形式。了解更多基礎(chǔ)知識,你可以學(xué)習(xí)自帶教程或者GNU網(wǎng)站提供的這個(gè)教程Guided Tour of Emacs。
配置與插件包(packages)
Emacs的好處之一,就是配置簡單。Emacs配置的核心則是初始化文件(Initialization File)—— init.el。
在Unix環(huán)境下,這個(gè)文件應(yīng)該放置在$HOME/.emacs.d/init.el路徑。