"Run make inside the vim directory" 是什么意思
What is meant with "Run make inside the vim directory"
这是一个简单的,也许是显而易见的问题,但我还是冒昧地问了一句。这是解决我遇到的 vim-fsharp
问题(请参阅 github repo here)的更大努力的一部分,我不断收到错误消息,如 "Error detected while processing function fsharpbinding#python#OnBufWritePre" 和许多管道损坏错误。我尝试使用不同的方法卸载并重新安装插件几次,但 none 到目前为止都有效,所以我试图在几分钟内重建我的安装过程。
我还尝试确保我拥有适当的权限,并拥有 运行 所有可能的 sudo 命令。
我现在的问题是关于安装说明中的第三点 "Run make inside the vim directory." 我不确定我是否理解此上下文中的 vim 目录是什么。是 ~/.vim
还是 ~/.vim/bundle/vim-fsharp
?这是否意味着我执行以下操作(在确保我同时拥有病原体和合成体以及 运行 git clone https://github.com/fsharp/vim-fsharp.git
之后):cd vim-fsharp && sudo make
?
Run make inside the vim directory.
make
需要 Makefile
。因为你不太可能在 ~/.vim/
中有一个而在 ~/.vim/bundle/vim-fsharp
中有一个你必须在逻辑上做 $ make
在后者中:
$ cd ~/.vim/bundle/vim-fsharp
$ make
如果我没看错Makefile
,你就不需要sudo
。
这是一个简单的,也许是显而易见的问题,但我还是冒昧地问了一句。这是解决我遇到的 vim-fsharp
问题(请参阅 github repo here)的更大努力的一部分,我不断收到错误消息,如 "Error detected while processing function fsharpbinding#python#OnBufWritePre" 和许多管道损坏错误。我尝试使用不同的方法卸载并重新安装插件几次,但 none 到目前为止都有效,所以我试图在几分钟内重建我的安装过程。
我还尝试确保我拥有适当的权限,并拥有 运行 所有可能的 sudo 命令。
我现在的问题是关于安装说明中的第三点 "Run make inside the vim directory." 我不确定我是否理解此上下文中的 vim 目录是什么。是 ~/.vim
还是 ~/.vim/bundle/vim-fsharp
?这是否意味着我执行以下操作(在确保我同时拥有病原体和合成体以及 运行 git clone https://github.com/fsharp/vim-fsharp.git
之后):cd vim-fsharp && sudo make
?
Run make inside the vim directory.
make
需要 Makefile
。因为你不太可能在 ~/.vim/
中有一个而在 ~/.vim/bundle/vim-fsharp
中有一个你必须在逻辑上做 $ make
在后者中:
$ cd ~/.vim/bundle/vim-fsharp
$ make
如果我没看错Makefile
,你就不需要sudo
。