diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2016-07-01 23:39:26 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2016-07-01 23:39:26 +0900 |
commit | 7482fc53804b9925fc5352cd99f9ce7f239c36e5 (patch) | |
tree | 3e67d6bf950a3ce6c87c1829f8729c000d4bd7ce /syntax | |
parent | 3dddc8f45e491877480a2cac0bcba21d6f844ba4 (diff) | |
download | vim-sonictemplate-7482fc53804b9925fc5352cd99f9ce7f239c36e5.tar.gz vim-sonictemplate-7482fc53804b9925fc5352cd99f9ce7f239c36e5.tar.bz2 vim-sonictemplate-7482fc53804b9925fc5352cd99f9ce7f239c36e5.zip |
stpl filetype
Diffstat (limited to 'syntax')
-rw-r--r-- | syntax/stpl.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/syntax/stpl.vim b/syntax/stpl.vim new file mode 100644 index 0000000..62e6683 --- /dev/null +++ b/syntax/stpl.vim @@ -0,0 +1,5 @@ +syn clear + +syn match stplPattern "^\S.*$" +syn match stplSnippet "^\t.*$" +hi def link stplPattern Special |