diff options
Diffstat (limited to '')
-rw-r--r-- | syntax/dune.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/syntax/dune.vim b/syntax/dune.vim index 900c08b7..b9160f78 100644 --- a/syntax/dune.vim +++ b/syntax/dune.vim @@ -1,4 +1,5 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1 + if exists("b:current_syntax") finish endif @@ -35,4 +36,5 @@ syn match duneVar '\${\k\+\(:\k\+\)\?}' containedin=lispSymbol hi def link duneVar Identifier let b:current_syntax = "dune" + endif |