Vim 和 snipMate(插件) - 添加新代码片段不起作用
我正在尝试为我的 snipMate 插件创建一个新的片段。
我使用一些名为(即)myfile.endfile 的文件。
所有 .endfile 文件都应具有与 .html 文件相同的“片段”。 所以我
cp html.snippet endfile.snippet
在 ~/.vim/snippets 目录中做了。
SnipMate 正在处理所有现有的片段,但不适用于我新创建的片段。 对于这个问题有什么建议吗?
(顺便说一句:创建新的 .snippet 文件后,我在 vim 实例中运行 :helptags ~/.vim/doc
命令。)
I am trying to create a new snippet to my snipMate plugin.
I work with some files called (i.e.) myfile.endfile
All .endfile files should have the same "snippet" like .html files.
So I did
cp html.snippet endfile.snippet
in my ~/.vim/snippets directory.
SnipMate is working with all present snippets, but not with my new created one.
Any suggestions for this problem?
(Btw: after creating the new .snippet file, I ran :helptags ~/.vim/doc
command in an vim instance.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是因为 Snipmate 与
filetype
一起使用,这是打开特定类型的文件时设置的 Vim 选项。例如,如果您打开“index.html”,
filetype
将自动设置为html
。要查看它是如何工作的,请执行以下操作:
:e $VIMRUNTIME/filetype.vim
作为初步测试,您可以:
1.打开test.end文件
2. 输入
:set ft=endfile
或:set filetype=endfile
3. 检查您定义的代码片段现在是否有效
为此,请自动在 .vimrc 中添加以下内容:
au BufNewFile,BufRead *.endfile set filetype=endfile
这意味着每次读取或创建以
endfile
结尾的新文件时,文件类型选项都会设置为 endfile。(文件类型是任意字符串,不必与文件扩展名相同)
It is because Snipmate works with
filetype
, which is a Vim option set when opening a file of a particular type.For exemple, if you are opening, "index.html" the
filetype
is automatically set tohtml
.To see how it works, do :
:e $VIMRUNTIME/filetype.vim
As a preliminary test, you can :
1. open test.endfile
2. type
:set ft=endfile
or:set filetype=endfile
3. Check if your defined snippets now work
To do that automatically add the following in your .vimrc :
au BufNewFile,BufRead *.endfile set filetype=endfile
It means that every time you read or create a new file ending in
endfile
the filetype option is set to endfile.(The filetype is an arbitrary string it doesn't have to be identical to the file extension)
您可以在不更改文件类型的情况下分配片段(这是可取的,因为更改文件类型会破坏语法突出显示)。
我相信在 snipmate 的维护分支中执行此操作的正确方法是设置 g:snipMate。范围别名。
在您的示例中,假设您有一个 'endfile.snippet' 文件,我相信将以下内容添加到您的 .vimrc 中会起作用:
如果您希望 html 和 endfile 片段都适用于 filetype='html' 的文件,则使用:
I已向 snipmate 添加了拉取请求以更新其文档。 编辑:现已合并。
You can assign snippets without altering the filetype (which is desirable, because altering the filetype breaks syntax highlighting).
I believe the proper way to do this in the maintained fork of snipmate is to set g:snipMate.scope_aliases.
In your example, assuming you have an 'endfile.snippet' file, I believe adding the following to your .vimrc would work:
If you want both html and endfile snippets to work for files of filetype='html', then use:
I've added a pull request to snipmate to have their documentation updated. Edit: It has now been merged.
我发现在使用具有不常见 name.endfile 的代码片段时,使用全局代码片段很方便。
当您将代码片段放入代码片段文件夹内的 _.snippets 文件中时,它们将成为全局的,并且可以在每种文件类型中访问。
也许这不是直接回答问题,但很多有类似问题的用户会发现这很方便。特别是如果他们不需要将所有内容组织在不同的文件中,并且很乐意在一个可随处访问的文件中拥有自己的片段。
I found it convenient to use global snippets when using snippets that have uncommon name.endfile.
When you put your snippets in _.snippets file inside snippets folder they become global and are accessible in every filetype.
Maybe this is not directly answer to the question but a lot of users with similar problem can find this convenient. Specially if they don't have need to have everything organised in various files and are happy to have their own snippets in one file that is accessible everywhere.