From 5130047a5c5b93ad822ba69bbc37d73fe3e4cb5d Mon Sep 17 00:00:00 2001 From: Sebastian Reichel Date: Sun, 19 Feb 2012 23:10:17 +0100 Subject: style update for vala.vim --- vim/syntax/vala.vim | 79 +++++++++++++++++++++++++++-------------------------- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/vim/syntax/vala.vim b/vim/syntax/vala.vim index c8de41e..3700fb6 100644 --- a/vim/syntax/vala.vim +++ b/vim/syntax/vala.vim @@ -3,7 +3,8 @@ " Maintainers: Emmanuele Bassi " Hans Vercammen " pancake -" Last Change: 2009-10-28 +" Sebastian Reichel +" Last Change: 2012-02-19 " Filenames: *.vala *.vapi " " REFERENCES: @@ -18,7 +19,7 @@ " to have shebang support if exists("b:current_syntax") - finish + finish endif let s:vala_cpo_save = &cpo @@ -54,33 +55,33 @@ syn keyword valaTodo contained TODO FIXME XXX NOTE " valadoc Comments (ported from javadoc comments in java.vim) " TODO: need to verify valadoc syntax if !exists("vala_ignore_valadoc") - syn cluster valaDocCommentGroup contains=valaDocTags,valaDocSeeTag - syn region valaDocTags contained start="{@\(link\|linkplain\|inherit[Dd]oc\|doc[rR]oot\|value\)" end="}" - syn match valaDocTags contained "@\(param\|exception\|throws\|since\)\s\+\S\+" contains=valaDocParam - syn match valaDocParam contained "\s\S\+" - syn match valaDocTags contained "@\(author\|brief\|version\|return\|deprecated\)\>" - syn region valaDocSeeTag contained matchgroup=valaDocTags start="@see\s\+" matchgroup=NONE end="\_."re=e-1 contains=valaDocSeeTagParam - syn match valaDocSeeTagParam contained @"\_[^"]\+"\|\|\(\k\|\.\)*\(#\k\+\((\_[^)]\+)\)\=\)\=@ extend + syn cluster valaDocCommentGroup contains=valaDocTags,valaDocSeeTag + syn region valaDocTags contained start="{@\(link\|linkplain\|inherit[Dd]oc\|doc[rR]oot\|value\)" end="}" + syn match valaDocTags contained "@\(param\|exception\|throws\|since\)\s\+\S\+" contains=valaDocParam + syn match valaDocParam contained "\s\S\+" + syn match valaDocTags contained "@\(author\|brief\|version\|return\|deprecated\)\>" + syn region valaDocSeeTag contained matchgroup=valaDocTags start="@see\s\+" matchgroup=NONE end="\_."re=e-1 contains=valaDocSeeTagParam + syn match valaDocSeeTagParam contained @"\_[^"]\+"\|\|\(\k\|\.\)*\(#\k\+\((\_[^)]\+)\)\=\)\=@ extend endif " Comment Strings (ported from c.vim) if exists("vala_comment_strings") - syn match valaCommentSkip contained "^\s*\*\($\|\s\+\)" - syn region valaCommentString contained start=+L\=\\\@" skip="\\$" end="$" end="//"me=s-1 @@ -88,9 +89,9 @@ syn match valaPreCondit display "^\s*\(%:\|#\)\s*\(else\|endif\)\>" " Comment if 0 blocks (ported from c.vim) if !exists("vala_no_if0") - syn region valaCppOut start="^\s*\(%:\|#\)\s*if\s\+0\+\>" end=".\@=\|$" contains=valaCppOut2 fold - syn region valaCppOut2 contained start="0" end="^\s*\(%:\|#\)\s*\(endif\>\|else\>\|elif\>\)" contains=valaSpaceError,valaCppSkip - syn region valaCppSkip contained start="^\s*\(%:\|#\)\s*\(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*\(%:\|#\)\s*endif\>" contains=valaSpaceError,valaCppSkip + syn region valaCppOut start="^\s*\(%:\|#\)\s*if\s\+0\+\>" end=".\@=\|$" contains=valaCppOut2 fold + syn region valaCppOut2 contained start="0" end="^\s*\(%:\|#\)\s*\(endif\>\|else\>\|elif\>\)" contains=valaSpaceError,valaCppSkip + syn region valaCppSkip contained start="^\s*\(%:\|#\)\s*\(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*\(%:\|#\)\s*endif\>" contains=valaSpaceError,valaCppSkip endif " match comment errors @@ -124,19 +125,19 @@ syn match valaNumber display "\<\d\+\([eE][-+]\=\d\+\)\=[fFdD]\>" " when wanted, highlight trailing white space if exists("vala_space_errors") - if !exists("vala_no_trail_space_error") - syn match valaSpaceError display excludenl "\s\+$" - endif - if !exists("vala_no_tab_space_error") - syn match valaSpaceError display " \+\t"me=e-1 - endif + if !exists("vala_no_trail_space_error") + syn match valaSpaceError display excludenl "\s\+$" + endif + if !exists("vala_no_tab_space_error") + syn match valaSpaceError display " \+\t"me=e-1 + endif endif " when wanted, set minimum lines for comment syntax syncing if exists("vala_minlines") - let b:vala_minlines = vala_minlines + let b:vala_minlines = vala_minlines else - let b:vala_minlines = 50 + let b:vala_minlines = 50 endif exec "syn sync ccomment valaComment minlines=" . b:vala_minlines @@ -186,9 +187,9 @@ hi def link valaUnicodeSpecifier SpecialChar hi def link valaPreCondit PreCondit if !exists("vala_no_if0") - hi def link valaCppSkip valaCppOut - hi def link valaCppOut2 valaCppOut - hi def link valaCppOut Comment + hi def link valaCppSkip valaCppOut + hi def link valaCppOut2 valaCppOut + hi def link valaCppOut Comment endif let b:current_syntax = "vala" @@ -196,4 +197,4 @@ let b:current_syntax = "vala" let &cpo = s:vala_cpo_save unlet s:vala_cpo_save -" vim: ts=4 +" vim: ts=8 -- cgit v1.2.3