package publish
This commit is contained in:
parent
5a8b95b339
commit
580410197b
3 changed files with 3 additions and 2 deletions
|
@ -3,6 +3,7 @@ scriptencoding utf-8
|
|||
syntax match logicalAnd '&&' conceal cchar=∧
|
||||
syntax match leq '<=' conceal cchar=≤
|
||||
syntax match geq '>=' conceal cchar=≥
|
||||
syntax match neq '!=' conceal cchar=≠
|
||||
syntax match logicalOr '||' conceal cchar=∨
|
||||
|
||||
" FIXME boring white?
|
||||
|
|
|
@ -38,7 +38,7 @@ endfunction
|
|||
|
||||
if g:ats_use_ctags == 1
|
||||
augroup ats
|
||||
autocmd BufWritePost *.dats,*.cats,*.sats,*.hats silent !ctags . -R
|
||||
autocmd BufWritePost *.dats,*.cats,*.sats,*.hats silent !ctags -R .
|
||||
augroup END
|
||||
endif
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ endif
|
|||
"
|
||||
|
||||
" keyword highlighting
|
||||
syn keyword atsKeyword prefix postfix infix infixl infixr op nonfix addr
|
||||
syn keyword atsKeyword prefix postfix infix infixl infixr op addr
|
||||
syn keyword atsKeyword staload stadef sta dynload stacst assertloc macdef
|
||||
syn keyword atsCond if then else case sif when
|
||||
syn keyword atsRepeat while
|
||||
|
|
Loading…
Reference in a new issue