vim-polyglot/after/syntax/help.vim

9 lines
309 B
VimL
Raw Normal View History

2013-09-12 11:02:41 -04:00
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