vim配置clojure開發環境備忘錄

c3tc3tc3t發表於2014-03-02

1 需要使用的外掛

 vundle 使用教程 http://www.cnblogs.com/respawn/archive/2012/08/21/2649483.html

vim-fireplace https://github.com/tpope/vim-fireplace

 

 

2 在vim配置檔案上 配置好外掛

Bundle 'tpope/vim-fireplace'

 

3 安裝上lein  http://leiningen.org/ 

下載後。按照網站介紹安裝就可以了

4使用

在終端下執行

lein repl

nREPL server started on port 34192 on host 127.0.0.1
REPL-y 0.3.0
Clojure 1.5.1
Docs: (doc function-name-here)
(find-doc "part-of-name-here")
Source: (source function-name-here)
Javadoc: (javadoc java-object-or-class-here)
Exit: Control+D or (exit) or (quit)
Results: Stored in vars *1, *2, *3, an exception in *e

user=>

 

 

然後在vim中 ,新建一個1.clj檔案 鍵入 (+ 1 2)

 

然後 執行:Connect 命令 填上 埠地址 就是這些lein repl 執行後所顯示的資訊。和相應scope範圍檔案 例如 1.clj檔案

 

然後執行:Eval   就會執行(+ 1 2)

相關文章