aboutsummaryrefslogtreecommitdiff
path: root/files/.vim/syntax
diff options
context:
space:
mode:
authorAnton Bobov <abobov@gmail.com>2013-10-18 22:14:58 +0600
committerAnton Bobov <abobov@gmail.com>2013-10-19 00:47:57 +0600
commit1048b107a3cfbb0490e2b394c32c90fafe4b98ac (patch)
tree12094d66f99bf636eaa2fb91fdbed54b2df70d94 /files/.vim/syntax
parentede115791a81775b1e7a65ab8ed3a8872c94a38e (diff)
Vim snipmate plugin moved to the bundle.
Diffstat (limited to 'files/.vim/syntax')
-rw-r--r--files/.vim/syntax/snippet.vim17
1 files changed, 0 insertions, 17 deletions
diff --git a/files/.vim/syntax/snippet.vim b/files/.vim/syntax/snippet.vim
deleted file mode 100644
index ea6042a..0000000
--- a/files/.vim/syntax/snippet.vim
+++ /dev/null
@@ -1,17 +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 '\w\+ \zs.*' contained
-syn match snipKeyword '^snippet'me=s+8 contained
-
-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