diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-10 17:44:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-10 17:44:18 +0000 |
commit | 3d27a45f9a536be76175d5a6c4d0d9ed552f8ebb (patch) | |
tree | 2b16c46af3e6269ce446fae70131a1afb1b80a8a /runtime/syntax | |
parent | 044b68f42a945cdccb357ee6bb67d719ba532cd4 (diff) | |
download | vim-3d27a45f9a536be76175d5a6c4d0d9ed552f8ebb.zip |
updated for version 7.1b
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/racc.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/syntax/racc.vim b/runtime/syntax/racc.vim index c0bfa303d..795b65243 100644 --- a/runtime/syntax/racc.vim +++ b/runtime/syntax/racc.vim @@ -1,7 +1,7 @@ " Vim default file " Language: Racc input file " Maintainer: Nikolai Weibull <now@bitwi.se> -" Latest Revision: 2006-04-19 +" Latest Revision: 2006-07-09 if exists("b:current_syntax") finish @@ -110,6 +110,10 @@ syn region raccFooter transparent matchgroup=raccPreProc \ start='^---- footer.*' end='^----'he=e-4 \ contains=@raccRuby +syn sync match raccSyncHeader grouphere raccHeader '^---- header' +syn sync match raccSyncInner grouphere raccInner '^---- inner' +syn sync match raccSyncFooter grouphere raccFooter '^---- footer' + hi def link raccTodo Todo hi def link raccComment Comment hi def link raccPrecSpec Type |