On Aug 1, 1:25 pm, Valter Sundström <[email protected]> wrote: > Hi, > I am trying to modify the fs.vim syntax file to support separate syntax > groups for types and functions. > The syntax for a simple type declaration is this: type [A-Za-z0-9]\+[ \t]*= > > The problem I am having is that "type" is a keyword that is already > highlighted as such, which overrides the syn matches I have tried writing. > > How do I approach this correctly?
Since you're already editing the distributed syntax file (something generally frowned upon), you may as well just remove the keyword match and make it a 'match' instead. Keywords always take precedence over matches and regions no matter what order they are defined in. -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
