package publish
This commit is contained in:
parent
acbf438de8
commit
0ad6bc774d
2 changed files with 45 additions and 2 deletions
|
@ -9,4 +9,18 @@ syntax match logicalOr '||' conceal cchar=∨
|
|||
" FIXME boring white?
|
||||
hi! link Conceal Keyword
|
||||
|
||||
" store and remove current syntax value
|
||||
let old_syntax = b:current_syntax
|
||||
unlet b:current_syntax
|
||||
|
||||
syn include @c syntax/c.vim
|
||||
unlet b:current_syntax
|
||||
|
||||
syn region madBlock matchgroup=atsCBlock start="%{" end="%}" contains=@c
|
||||
|
||||
hi def link atsCBlock Special
|
||||
|
||||
" restore current syntax value
|
||||
let b:current_syntax = old_syntax
|
||||
|
||||
setlocal conceallevel=1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue