diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-12 17:02:41 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-12 17:02:41 +0200 |
commit | 0a4fcd12b6227ae9975d64353025e55e2e0caddf (patch) | |
tree | e7fd30c6aab1ecb25f0867acb43e3a403c5f4878 /syntax/sbt.vim | |
parent | 49b050f04240628288ee09b453280c522507477f (diff) | |
download | vim-polyglot-0a4fcd12b6227ae9975d64353025e55e2e0caddf.tar.gz vim-polyglot-0a4fcd12b6227ae9975d64353025e55e2e0caddf.zip |
Add scala and sbt support
Diffstat (limited to '')
-rw-r--r-- | syntax/sbt.vim | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/syntax/sbt.vim b/syntax/sbt.vim new file mode 100644 index 00000000..1af382e1 --- /dev/null +++ b/syntax/sbt.vim @@ -0,0 +1,31 @@ +" Vim syntax file +" Language: sbt +" Maintainer: Derek Wyatt <derek@{myfirstname}{mylastname}.org> +" Last Change: 2012 Jan 19 + +if exists("b:current_syntax") + finish +endif + +runtime! syntax/scala.vim + +syn region sbtString start="\"[^"]" skip="\\\"" end="\"" contains=sbtStringEscape +syn match sbtStringEscape "\\u[0-9a-fA-F]\{4}" contained +syn match sbtStringEscape "\\[nrfvb\\\"]" contained + +syn match sbtIdentitifer "^\S\+\ze\s*\(:=\|++=\|+=\|<<=\|<+=\)" +syn match sbtBeginningSeq "^[Ss]eq\>" + +syn match sbtSpecial "\(:=\|++=\|+=\|<<=\|<+=\)" + +syn match sbtLineComment "//.*" +syn region sbtComment start="/\*" end="\*/" +syn region sbtDocComment start="/\*\*" end="\*/" keepend + +hi link sbtString String +hi link sbtIdentitifer Keyword +hi link sbtBeginningSeq Keyword +hi link sbtSpecial Special +hi link sbtComment Comment +hi link sbtLineComment Comment +hi link sbtDocComment Comment |