aboutsummaryrefslogtreecommitdiff
path: root/extras/steuermann.vim
diff options
context:
space:
mode:
Diffstat (limited to 'extras/steuermann.vim')
-rw-r--r--extras/steuermann.vim22
1 files changed, 22 insertions, 0 deletions
diff --git a/extras/steuermann.vim b/extras/steuermann.vim
new file mode 100644
index 0000000..97c3b2f
--- /dev/null
+++ b/extras/steuermann.vim
@@ -0,0 +1,22 @@
+" To use syntax highlighting with vim:
+"
+" put this file in ~/.vim/syntax/steuermann.vim
+"
+" put this command in ~/.vimrc
+" autocmd BufRead,BufNewFile *.sm set filetype=steuermann
+
+syntax match Comment "#.*$"
+
+syntax keyword Keyword HOSTGROUP TABLE HOST CMD OPT AFTER RUN LOCAL
+syntax keyword Keyword IMPORT DEBUG
+
+syntax match IfClause "IF[^:]*:"
+
+highlight IfClause guifg=green ctermfg=2
+
+syntax match String "\"[^"]*\""
+
+syntax region PreProc start="CONDITIONS" end="[\s]*END[ \t]*\n"
+
+syntax sync fromstart
+