diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2021-09-09 12:05:33 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2021-09-09 12:05:33 +0200 |
commit | 7f98e949d4922ba2109304bd4cabe9578a8062fb (patch) | |
tree | e1b08f862397c14ab799e8f277c6fc39ec48b3b6 /syntax/juliadoc.vim | |
parent | ce31cd1d2f4e8eee9fd91325e4599f15cb9566fd (diff) | |
download | vim-polyglot-7f98e949d4922ba2109304bd4cabe9578a8062fb.tar.gz vim-polyglot-7f98e949d4922ba2109304bd4cabe9578a8062fb.zip |
Update
Diffstat (limited to 'syntax/juliadoc.vim')
-rw-r--r-- | syntax/juliadoc.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/syntax/juliadoc.vim b/syntax/juliadoc.vim index c4dbfdbd..41626d03 100644 --- a/syntax/juliadoc.vim +++ b/syntax/juliadoc.vim @@ -9,6 +9,9 @@ if exists('b:current_syntax') finish endif +let s:cpo_save = &cpo +set cpo&vim + syntax sync fromstart syntax region juliadocCode matchgroup=juliadocCodeDelimiter start="`" end="`" concealends display oneline @@ -67,3 +70,6 @@ highlight default link juliadocAdmonitionsType Todo highlight default link juliadocAdmonitionsTitle Title let b:current_syntax = "juliadoc" + +let &cpo = s:cpo_save +unlet s:cpo_save |