We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ff9e99 commit c4a1c86Copy full SHA for c4a1c86
syntax/julia.vim
@@ -9,6 +9,9 @@ elseif exists("b:current_syntax")
9
finish
10
endif
11
12
+let s:cpo_save = &cpo
13
+set cpo&vim
14
+
15
if version < 704
16
" this is used to disable regex syntax like `\@3<='
17
" on older vim versions
@@ -541,3 +544,6 @@ hi def link juliaError Error
541
544
syntax sync fromstart
542
545
543
546
let b:current_syntax = "julia"
547
548
+let &cpo = s:cpo_save
549
+unlet s:cpo_save
0 commit comments