summaryrefslogtreecommitdiffstats
path: root/after/syntax
diff options
context:
space:
mode:
Diffstat (limited to 'after/syntax')
-rw-r--r--after/syntax/help.vim8
1 files changed, 8 insertions, 0 deletions
diff --git a/after/syntax/help.vim b/after/syntax/help.vim
new file mode 100644
index 00000000..b352a1e6
--- /dev/null
+++ b/after/syntax/help.vim
@@ -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