如何安装 Vimball 插件(扩展名为 .vba)?
如何安装 Vimball 插件(带有 .vba
扩展名)?
文档只是说:
安装详细信息编辑 vba 文件并输入:
<前><代码>:所以%
vimball 文档显示:
用户需要使用 vimball 做的是:
vim someplugin.vba :所以 % :q
- 我必须在正常模式下(在 Vim 内)还是在
_vimrc
文件中编写它? - 我是否必须写入
.vba
文件的完整路径? - 我无法在正常模式下编写
vim someplugin
。我必须写:vim插件
吗?
How to install a Vimball plugin (with .vba
extension)?
The documentation just says:
install details Edit the vba file and type:
:so %
The vimball documentation says:
All a user needs to do with a vimball is:
vim someplugin.vba :so % :q
- Do I have to write that in normal mode (inside Vim) or in the
_vimrc
file? - Do I have to write the full path of the
.vba
file? - I can't write
vim someplugin
in normal mode. Do I have to write:vim plugin
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 vim 打开 vba 文件,然后在其中键入
:source %
命令。%
引用当前文件,因此在 vim 中打开文件时使用:source %
告诉它在 vim 上下文中运行该文件,这在对于 vba 文件,请将其安装在正确的目录中。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.