diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-02-16 14:02:48 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-02-16 14:02:48 -0300 |
commit | fca5489ba6e80ce08f1b1e3bfeb582b916eb1194 (patch) | |
tree | 431732d0101611d066ea84aa30cdc1952d1c077d /vim.dot.link/syntax/snippet.vim | |
parent | 5e8c17ed00a8df3c12d459fb9d2634b3a28773ed (diff) | |
download | vim-fca5489ba6e80ce08f1b1e3bfeb582b916eb1194.tar.gz vim-fca5489ba6e80ce08f1b1e3bfeb582b916eb1194.tar.bz2 |
Major cleanup
Diffstat (limited to 'vim.dot.link/syntax/snippet.vim')
-rw-r--r-- | vim.dot.link/syntax/snippet.vim | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/vim.dot.link/syntax/snippet.vim b/vim.dot.link/syntax/snippet.vim deleted file mode 100644 index 5e919e7..0000000 --- a/vim.dot.link/syntax/snippet.vim +++ /dev/null @@ -1,19 +0,0 @@ -" Syntax highlighting for snippet files (used for snipMate.vim) -" Hopefully this should make snippets a bit nicer to write! -syn match snipComment '^#.*' -syn match placeHolder '\${\d\+\(:.\{-}\)\=}' contains=snipCommand -syn match tabStop '\$\d\+' -syn match snipCommand '`.\{-}`' -syn match snippet '^snippet.*' transparent contains=multiSnipText,snipKeyword -syn match multiSnipText '\S\+ \zs.*' contained -syn match snipKeyword '^snippet'me=s+8 contained -syn match snipError "^[^#s\t].*$" - -hi link snipComment Comment -hi link multiSnipText String -hi link snipKeyword Keyword -hi link snipComment Comment -hi link placeHolder Special -hi link tabStop Special -hi link snipCommand String -hi link snipError Error |