From 7482fc53804b9925fc5352cd99f9ce7f239c36e5 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Fri, 1 Jul 2016 23:39:26 +0900 Subject: stpl filetype --- ftdetect/stpl.vim | 1 + syntax/stpl.vim | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 ftdetect/stpl.vim create mode 100644 syntax/stpl.vim diff --git a/ftdetect/stpl.vim b/ftdetect/stpl.vim new file mode 100644 index 0000000..7ba887e --- /dev/null +++ b/ftdetect/stpl.vim @@ -0,0 +1 @@ +au BufNewFile,BufRead *.stpl setf stpl 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 -- cgit v1.2.3-54-g00ecf