How to add new snippets to snipMate in VIM

和自甴很熟 提交于 2019-12-03 05:59:31

I'm not sure it's meant to be done like this but you can try calling the MakeSnip function from within file you're currently working on. For example:

:call MakeSnip(&ft, "foo", "<foo>${1}</foo>")

&ft will pass the filetype of the file you're currently editing, "foo" is the trigger and "<foo>${1}</foo>" is the replacement text.

Of course, snippets created like this won't persist. So why not have the snippets file open in another buffer, define new snippets there as necessary, then do:

:call ReloadSnippets(&ft)

and your new snippet will be available. You could even define an autocmd to call the ReloadSnippets function when you write the snippets file.

If you are using pathogen, you can write your own snippets without polluting the original ones. To do this, add your snippets to ~/.vim/bundle/mysnippets/snippets/*.snippets. FYI, mysnippets can be any name.

Moreover, it's a convention to add a _.snippets file in that directory where you add snippets which should be available everywhere irrespective of the filetype.

You can put your own snippets in ~/.vim/after/snippets/ or whatever the equivalent on Windows is... read :h snipMate for the filename syntax.

Just place your own snippets (given you want to use them in all files you edit) here:

~/.vim/after/snippets/_.snippets

For example:

snippet test
  {"foo": "${1}", "bar": "${2}"}

Snippets for Snipmate are usually stored in the ".vim" directory in the snippets folder.

You can pretty easily edit the snippet file for the language you are working on.

If you use vundle to manage your plugins on Windows and you have installed

vim-snipMate & vim-snippets

If you want to add your customization, say to 'html' filetype, you just go to this folder:

$HOME/vimfiles/bundle/vim-snippets/snippets/ 

create a new file and name it in this format:

html_bsmith.snippets  

(it must be underscore after html, see :help snipmate)

Then vim will load your file automatically.

If you customization can be used anywhere, just put it in the existing file:

    _.snippets
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!