Add scala and sbt support

This commit is contained in:
Adam Stankiewicz
2013-09-12 17:02:41 +02:00
parent 49b050f042
commit 0a4fcd12b6
9 changed files with 1035 additions and 0 deletions

8
after/syntax/help.vim Normal file
View File

@@ -0,0 +1,8 @@
let b:current_syntax = ''
unlet b:current_syntax
syntax include @ScalaCode syntax/scala.vim
if has('conceal')
syntax region rgnScala matchgroup=Ignore concealends start='!sc!' end='!/sc!' contains=@ScalaCode
else
syntax region rgnScala matchgroup=Ignore start='!sc!' end='!/sc!' contains=@ScalaCode
endif