如何向 Vim 添加项目经理?

发布于 2024-10-09 06:38:26 字数 94 浏览 1 评论 0原文

感谢您让我知道我可以通过这种方式更改我的帖子。实际上,我已经按照自己的喜好添加了项目管理器,但现在我正在尝试将 snipmate 广告添加到我的插件中,现在完全确定如何进行。

Thanks for letting me know I can change my posts this way. I am actually done with adding the project manager to my liking but now I am trying to ad snipmate to my plugins now entirely sure how though.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

洒一地阳光 2024-10-16 06:38:26

项目插件需要在 $HOME 目录中有一个名为 .vimproject 的项目文件。 Windows 上的示例条目可能如下(如果您使用的是 Linux,请将 vimfiles 替换为 .vim):

VIMSTUFF="~/vimfiles" CD=. flags=r {
  ../_vimrc
  ../_gvimrc
  plugin/my_plugin.vim
  after/syntax/c.vim
}

项目包含我的所有内容我创建的 vim 相关文件,例如 my_plugin.vimafter/syntax/c.vim

要编辑 .vimprojects 文件,请打开 vim 并按 F12 这将切换项目窗口。

项目插件的文档提供了一些示例,将指导您如何开始。

The project plugin needs a project file in your $HOME directory called .vimproject. A sample entry could be as follows on Windows (if you're using linux, replace vimfileswith .vim):

VIMSTUFF="~/vimfiles" CD=. flags=r {
  ../_vimrc
  ../_gvimrc
  plugin/my_plugin.vim
  after/syntax/c.vim
}

This project holds all my vim related files that I created such as my_plugin.vim and after/syntax/c.vim.

To edit the .vimprojects file, open up vim and press F12 which will toggle the project window.

The documentation of the project plugin provides a few samples that will guide you how to start.

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