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

发布于 2024-08-16 23:50:26 字数 472 浏览 4 评论 0原文

如何安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

束缚m 2024-08-23 23:50:26

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文