我试图在macOS Sierra下使用slimv的答案,这是another question of mine的答案。但是,当我将此插件安装到~/.vim/plugin
并运行vi test.lisp
时,我收到以下错误。美丽的" Slimv"菜单也没有显示。
sunqingyaos-MacBook-Air:plugin sunqingyao$ vi ~/.vimrc
Error detected while processing /Users/sunqingyao/.vim/plugin/ftplugin/clojure/slimv-clojure.vim:
line 196:
E117: Unknown function: SlimvInitBuffer
Press ENTER or type command to continue
请注意,目前我的MacBook Air上没有安装Clojure。我想要做的就是在vim中调试一些mit方案程序。
以下是~/.vimrc
的相关部分:
let g:slimv_swank_cmd = '!osascript -e "tell application \"Terminal\" to do script \"mit-scheme --load ~/.vim/plugin/slime/start-swank.lisp\""'
vim的版本信息:
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Oct 13 2016 21:22:16)
Included patches: 1-898
Compiled by root@apple.com
我是一个对vim脚本不太了解的新手,所以请详细解释一下。
答案 0 :(得分:1)
您不应该将其安装到~/.vim/plugin
中,您应该将其安装到~/.vim
,因为slimv在plugin
之外的其他vim目录中有文件(例如ftplugin
, indent
,syntax
等)。