如何安装 Vimball 插件(带.vba 扩展名) ?

如何安装 Vimball 插件(带 .vba扩展) ?

文件只是说:

安装细节编辑 vba 文件并键入:

:so %

Vimball 的文档说:

用户使用 Vimball 所需要做的就是:

vim someplugin.vba
:so %
:q
  • 我必须在普通模式下(在 Vim 中)还是在 _vimrc文件中编写它?
  • 我必须写 .vba文件的完整路径吗?
  • 我不能在正常模式下写 vim someplugin。我必须写 :vim plugin吗?
27415 次浏览

Open the vba file with vim, and type the :source % command right there. The % refers to the current file, so using :source % while having a file open in vim is telling it to run the file in the context of vim, which in the case of vba files, is installing it in the proper directories.