diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-05-27 16:45:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-05-27 16:45:17 +0200 |
commit | b4d6c3ea4a59c6d8d4e0e52120596866f0edd510 (patch) | |
tree | 86f10ef089a2bcb8d77a7c5de3f4448422da9bde /runtime/syntax/sbt.vim | |
parent | 712598f210570627534246cb5dcbb4f213367997 (diff) | |
download | vim-git-b4d6c3ea4a59c6d8d4e0e52120596866f0edd510.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/syntax/sbt.vim')
-rw-r--r-- | runtime/syntax/sbt.vim | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/runtime/syntax/sbt.vim b/runtime/syntax/sbt.vim new file mode 100644 index 000000000..cbf73beaf --- /dev/null +++ b/runtime/syntax/sbt.vim @@ -0,0 +1,32 @@ +" Vim syntax file +" Language: sbt +" Maintainer: Steven Dobay <stevendobay at protonmail.com> +" Last Change: 2017.04.30 + +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 + |