diff options
author | Patrick McCarty <pnorcks@gmail.com> | 2010-07-26 13:01:42 -0700 |
---|---|---|
committer | Patrick McCarty <pnorcks@gmail.com> | 2010-07-26 13:03:45 -0700 |
commit | 32ff60d59f42c971437f883b45b532d4a70ceb97 (patch) | |
tree | 8e784952879fbccfe30c6ba4bb10ee3bc371971c /vim | |
parent | 291f9b3327d26a1b9e98a030d23e7463fa463ba7 (diff) |
Vim syntax: Remove `lilyEquation'.
This pattern has never uses a highlighting rule, and it now conflicts
with the lilyScheme regions, so it is best to get rid of it.
Diffstat (limited to 'vim')
-rw-r--r-- | vim/lilypond-syntax.vim | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/vim/lilypond-syntax.vim b/vim/lilypond-syntax.vim index 2bf08439a5..701a7c3e77 100644 --- a/vim/lilypond-syntax.vim +++ b/vim/lilypond-syntax.vim @@ -1,9 +1,7 @@ " LilyPond syntax file " Language: LilyPond " Maintainer: Heikki Junes <hjunes@cc.hut.fi> -" Created: Oct 17, 2002 -" Last Change: Aug 30, 2009 -" Version: 6.1-1 +" Last Change: 2010 Jul 26 " " Installed As: vim/syntax/lilypond.vim " Uses Generated File: vim/syntax/lilypond-words.vim @@ -33,7 +31,7 @@ setlocal mps+=<:> " Case matters syn case match -syn cluster lilyMatchGroup contains=lilyMatcher,lilyString,lilyComment,lilyStatement,lilyNumber,lilyEquation,lilySlur,lilySpecial,lilyNote,lilyKeyword,lilyArticulation,lilyReservedWord +syn cluster lilyMatchGroup contains=lilyMatcher,lilyString,lilyComment,lilyStatement,lilyNumber,lilySlur,lilySpecial,lilyNote,lilyKeyword,lilyArticulation,lilyReservedWord syn region lilyMatcher matchgroup=Delimiter start="{" skip="\\\\\|\\[<>]" end="}" contains=@lilyMatchGroup fold syn region lilyMatcher matchgroup=Delimiter start="\[" end="]" contains=@lilyMatchGroup fold @@ -44,7 +42,6 @@ syn region lilyComment start="%{" skip="%$" end="%}" syn region lilyComment start="%\([^{]\|$\)" end="$" syn match lilyNumber "[-_^.]\?\d\+[.]\?" -syn match lilyEquation "\(#['`]\)\?\(\a*[-]\)*\a*\s*=\s*\(#[#'`]\?\)\?\a*" syn match lilySlur "[(~)]" syn match lilySlur "\\[()]" syn match lilySpecial "\\[<!>\\]" |