如何向 Vim 添加项目经理?
感谢您让我知道我可以通过这种方式更改我的帖子。实际上,我已经按照自己的喜好添加了项目管理器,但现在我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
项目插件需要在
$HOME
目录中有一个名为.vimproject
的项目文件。 Windows 上的示例条目可能如下(如果您使用的是 Linux,请将vimfiles
替换为.vim
):此项目包含我的所有内容我创建的 vim 相关文件,例如
my_plugin.vim
和after/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, replacevimfiles
with.vim
):This project holds all my vim related files that I created such as
my_plugin.vim
andafter/syntax/c.vim
.To edit the
.vimprojects
file, open up vim and pressF12
which will toggle the project window.The documentation of the project plugin provides a few samples that will guide you how to start.