之所以用Emacs作为clojure编辑器是因为其提供了Clojure的REPL紧密集成,这可以让你立刻运行你刚写完的代码。那种紧密的反馈回路在你日常学习和使用clojure写实时程序时会非常有用,Emacs非常适合和任何Lips方言一起工作,事实上Emacs本身就是用一种叫Emacs Lisp (elisp)的方言写成的
下载安装emacs
你需要使用最新版本的Emacs,Emacs 24,作为你的工作平台
-
OS X: 下载http://emacsformacosx.com
,其他的一些选择,像Aquamacs仅仅是让Emacs操作起来更加像Mac风格,但是从长远来看还是存在问题的,因为他们设置上和标准Emacs很不一样,以至于很难去使用Emacs手册或相关教程 -
Ubuntu:参考这个链接所介绍的 https://launchpad.net/~cassou/+archive/emacs
-
Windows:你可以在这找到二进制包 http://ftp.gnu.org/gnu/emacs/windows/ 当你下载并解压了最新版本,你就可以在
bin\runemacs.exe
下运行Emacs可执行文件了
在此说明我用的是OS X安装,并没有采用直接下载上面所给链接的Emacs,而是brew
安装的,很简单,在这里就不多介绍了。
当你下载并安装完毕后,打开Emacs,你可以看到像这样的界面
配置
这里已经有了写好的配置文件 https://github.com/flyingmachine/emacs-for-clojure 按照下面的步骤删除你以前的Emacs配置,然后安装一个clojure友好的配置
1.关闭Emacs.
2.如果~/.emacs
或 ~/.emacs.d
存在的话,删除它们
3.从上面给出的链接下载Emacs配置文件的Zip压缩包并解压,执行mv
将解压出来的文件夹移动至~/
目录下并取名.emacs.d
4.新建一个文件件~/.lein/profiles.clj
将这行代码添加到文件里:
{:user {:plugins [[cider/cider-nrepl "0.8.1"]]}}
最后打开你的Emacs,当你打开Emacs时,你会看见像这样的界面,到这里基本的Emacsd的clojure编辑器就设置完毕了
使用
-
***启动 REPL ***
为了让Emacs连接到REPL,你需要使用Emacs包:CIDER,如果你按照前面的步骤一直做下来你就已经安装好它了,不过你仍然可以通过
M-x package-install [RET] cider [RET]
命令来安装它。打开一个clojure文件,然后通过
M-x cider-jack-in
来启动REPL,这会创建一个你能与之交互的新Buffer,等待片刻你会看到这样的窗口
你可以在REPL中输入可求职的clojure表达式,它会返回表达式的值给你
- 一些键绑定
Key Bindings for Navigating Text
Keys | Description |
---|---|
C-a | Move to beginning of line |
M-m | Move to first non-whitespace character on the line |
C-e | Move to end of line |
C-f | Move forward one character |
C-b | Move backward one character |
M-f | Move forward one word (I use this a lot) |
M-b | Move backward one word (I use this a lot, too) |
C-s | Regex search for text in current buffer and move to it.Press C-s again to move to next match |
C-r | Same as C-s, but search in reverse |
M-< | Move to beginning of buffer |
M-> | Move to end of buffer |
M-g g | Go to line |
Clojure Buffer Key Bindings
Keys | Description |
---|---|
C-c M-n | Switch to namespace of current buffer. |
C-x C-e | Evaluate expression immediately preceding point |
C-c C-k | Compile current buffer |
C-c C-d C-d | Display documentation for symbol under point |
M-. and M-, | Navigate to source code for symbol under point and return to your original buffer. |
C-c C-d C-a | Apropros search; find arbitrary text across function names and documentation |
CIDER Buffer Key Bindings
Keys | Description |
---|---|
C-↑, C-↓ | Cycle through REPL history |
C-enter | Close parentheses and evaluate |
Paredit Key Bindings
Keys | Description |
---|---|
M-x paredit-mode | Toggle paredit mode |
M-( | Surround expression after point in parentheses (paredit-wrap-round) |
C-→ | Slurp; move closing parenthesis to the right to include next expression |
C-← | Barf; move closing parenthesis to the left to exclude last expression |
C-M-f, C-M-b | Move to the opening/closing parenthesis |
说明:以上的clojure环境安装包括表格简要翻译自 http://www.braveclojure.com/basic-emacs/ ,基本只翻译了OS X环境下的安装。
一些设置
- 关于字体大小的设置
进入Emacs后执行C-x C-f
打开~/.emacs.d/customizations/ui.el
文件找到
(set-face-attribute 'default nil :height 140)
这里设置的是14(140),可以修改其值来改变默认字体大小
- 启动时窗口尺寸的设置
同样在ui.el
里面找到
(setq initial-frame-alist '((top . 0) (left . 0) (width . 129) (height . 126))
设置width
和height
的值到你满意为止
代码补全
关于代码补全在CIDER官方文档中有详细说明
1.安装company
包
M-x package-install [RET] company [RET]
2.在配置文件中添加
(global-company-mode)
使Emacs启动时就启动company-mode
,当然也可以M-x company-mode
方式启动
3.模糊补全
安装company-flx
包,启动company-flx-mode
,或者在配置文件中添加
(with-eval-after-load 'company
(company-flx-mode +1))
在开启clojure REPL后即可使用,就像这样
具体使用参考其Github主页
网友评论