mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-11 13:03:50 -05:00
9 lines
309 B
VimL
9 lines
309 B
VimL
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
|