1

我最近在我的 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 并输入一个“(”没有关闭“)”时被插入。我还需要做其他事情吗?

4

1 回答 1

1

这是为 .clj 文件做的

syntax on
au BufNewFile,BufRead *.clj setfiletype clojure
au BufNewFile,BufRead *.clj call PareditInitBuffer()
于 2013-04-03T22:19:51.740 回答