Skip to content

Commit ea3fc41

Browse files
jezalerque
authored andcommitted
Fix vint
This also regressed in #393, but we may as well fix it here.
1 parent 0ef2cf8 commit ea3fc41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

syntax/pandoc.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ if exists('b:current_syntax')
1616
finish
1717
endif
1818

19-
let s:cpo_save = &cpo
20-
set cpo&vim
19+
let s:cpo_save = &cpoptions
20+
set cpoptions&vim
2121

2222
" Configuration: {{{1
2323
"
@@ -745,7 +745,7 @@ let b:current_syntax = 'pandoc'
745745
syntax sync clear
746746
syntax sync minlines=1000
747747

748-
let &cpo = s:cpo_save
748+
let &cpoptions = s:cpo_save
749749
unlet s:cpo_save
750750

751751
" vim: set fdm=marker foldlevel=0:

0 commit comments

Comments
 (0)