vim: add optional rustFuncCall (default disabled)

This commit is contained in:
Ben Blum 2012-07-10 16:59:06 -04:00
parent e8b13e8f26
commit 2ffa9b6bd9
1 changed files with 4 additions and 0 deletions

View File

@ -66,6 +66,9 @@ syn keyword rustConstant STDIN_FILENO STDOUT_FILENO STDERR_FILENO
syn match rustModPath "\w\(\w\)*::[^<]"he=e-3,me=e-3
syn match rustModPathSep "::"
syn match rustFuncCall "\w\(\w\)*("he=e-1,me=e-1
syn match rustFuncCall "\w\(\w\)*::<"he=e-3,me=e-3 " foo::<T>();
syn region rustString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=rustTodo
syn region rustAttribute start="#\[" end="\]" contains=rustString
@ -119,6 +122,7 @@ hi def link rustAttribute PreProc
" Other Suggestions:
" hi def link rustModPathSep Conceal
" hi rustAssert ctermfg=yellow
" hi rustFuncCall ctermfg=magenta
syn sync minlines=200
syn sync maxlines=500