在Mac OSX上安装Paredit vim插件

时间:2013-04-03 21:53:34

标签: vim clojure paredit

我最近在我的mac osx上下载了vim的paredit插件。我将paredit.vim放在〜/ .vim目录中。

文档说:

When you enter a '(' then a matching ')' is automatically inserted.
If needed, spaces before and/or after the '()' pair are added.
...
Paredit mode is set by default for .lisp, .cl, .clj, cljs, .scm and .rkt files,
but it is possible to switch it off by putting the following statement in the
.vimrc file:

然而,当我打开vim并输入“(”no closing“)时,会插入。还有其他我需要做的事吗?

1 个答案:

答案 0 :(得分:1)

这是为.clj文件

做的
syntax on
au BufNewFile,BufRead *.clj setfiletype clojure
au BufNewFile,BufRead *.clj call PareditInitBuffer()