blob: b352a1e620609c56d5955721011ed3f127233586 (
plain) (
blame)
1
2
3
4
5
6
7
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
|