diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
commit | 071d4279d6ab81b7187b48f3a0fc61e587b6db6c (patch) | |
tree | 221cbe3c40e043163c06f61c52a7ba2eb41e12ce /runtime/syntax/yacc.vim | |
parent | b4210b3bc14e2918f153a7307530fbe6eba659e1 (diff) | |
download | vim-git-071d4279d6ab81b7187b48f3a0fc61e587b6db6c.tar.gz |
updated for version 7.0001v7.0001
Diffstat (limited to 'runtime/syntax/yacc.vim')
-rw-r--r-- | runtime/syntax/yacc.vim | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/runtime/syntax/yacc.vim b/runtime/syntax/yacc.vim new file mode 100644 index 000000000..532a39a95 --- /dev/null +++ b/runtime/syntax/yacc.vim @@ -0,0 +1,98 @@ +" Vim syntax file +" Language: Yacc +" Maintainer: Dr. Charles E. Campbell, Jr. <NdrOchipS@PcampbellAfamily.Mbiz> +" Last Change: Nov 18, 2002 +" Version: 2 +" URL: http://www.erols.com/astronaut/vim/index.html#vimlinks_syntax +" +" Option: +" yacc_uses_cpp : if this variable exists, then C++ is loaded rather than C + +" For version 5.x: Clear all syntax items +" For version 6.x: Quit when a syntax file was already loaded +if version < 600 + syntax clear +elseif exists("b:current_syntax") + finish +endif + +" Read the C syntax to start with +if version >= 600 + if exists("yacc_uses_cpp") + runtime! syntax/cpp.vim + else + runtime! syntax/c.vim + endif +elseif exists("yacc_uses_cpp") + so <sfile>:p:h/cpp.vim +else + so <sfile>:p:h/c.vim +endif + +" Clusters +syn cluster yaccActionGroup contains=yaccDelim,cInParen,cTodo,cIncluded,yaccDelim,yaccCurlyError,yaccUnionCurly,yaccUnion,cUserLabel,cOctalZero,cCppOut2,cCppSkip,cErrInBracket,cErrInParen,cOctalError,cCommentStartError,cParenError +syn cluster yaccUnionGroup contains=yaccKey,cComment,yaccCurly,cType,cStructure,cStorageClass,yaccUnionCurly + +" Yacc stuff +syn match yaccDelim "^\s*[:|;]" +syn match yaccOper "@\d\+" + +syn match yaccKey "^\s*%\(token\|type\|left\|right\|start\|ident\|nonassoc\)\>" +syn match yaccKey "\s%\(prec\|expect\)\>" +syn match yaccKey "\$\(<[a-zA-Z_][a-zA-Z_0-9]*>\)\=[\$0-9]\+" +syn keyword yaccKeyActn yyerrok yyclearin + +syn match yaccUnionStart "^%union" skipwhite skipnl nextgroup=yaccUnion +syn region yaccUnion contained matchgroup=yaccCurly start="{" matchgroup=yaccCurly end="}" contains=@yaccUnionGroup +syn region yaccUnionCurly contained matchgroup=yaccCurly start="{" matchgroup=yaccCurly end="}" contains=@yaccUnionGroup +syn match yaccBrkt contained "[<>]" +syn match yaccType "<[a-zA-Z_][a-zA-Z0-9_]*>" contains=yaccBrkt +syn match yaccDefinition "^[A-Za-z][A-Za-z0-9_]*[ \t]*:" + +" special Yacc separators +syn match yaccSectionSep "^[ \t]*%%" +syn match yaccSep "^[ \t]*%{" +syn match yaccSep "^[ \t]*%}" + +" I'd really like to highlight just the outer {}. Any suggestions??? +syn match yaccCurlyError "[{}]" +syn region yaccAction matchgroup=yaccCurly start="{" end="}" contains=ALLBUT,@yaccActionGroup + + +" Define the default highlighting. +" For version 5.7 and earlier: only when not done already +" For version 5.8 and later: only when an item doesn't have highlighting yet +if version >= 508 || !exists("did_yacc_syn_inits") + if version < 508 + let did_yacchdl_syn_inits = 1 + command -nargs=+ HiLink hi link <args> + else + command -nargs=+ HiLink hi def link <args> + endif + + " Internal yacc highlighting links + HiLink yaccBrkt yaccStmt + HiLink yaccKey yaccStmt + HiLink yaccOper yaccStmt + HiLink yaccUnionStart yaccKey + + " External yacc highlighting links + HiLink yaccCurly Delimiter + HiLink yaccCurlyError Error + HiLink yaccDefinition Function + HiLink yaccDelim Function + HiLink yaccKeyActn Special + HiLink yaccSectionSep Todo + HiLink yaccSep Delimiter + HiLink yaccStmt Statement + HiLink yaccType Type + + " since Bram doesn't like my Delimiter :| + HiLink Delimiter Type + + delcommand HiLink +endif + +let b:current_syntax = "yacc" + +" vim: ts=15 |