diff options
Diffstat (limited to 'syntax')
| -rw-r--r-- | syntax/dome_key.vim | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/syntax/dome_key.vim b/syntax/dome_key.vim index 93ffe1a..c1e1930 100644 --- a/syntax/dome_key.vim +++ b/syntax/dome_key.vim @@ -3,7 +3,7 @@ if exists('b:current_syntax')  endif  syntax region domeKeyComment display start="#" end="$" contains=@Spell -syntax region domeKeySpecialKey display start="<" end=">" contained contains=domeKeySpecialKeyKeyword +syntax region domeKeySpecialKey display matchgroup=domeKeySpecialKeyGroup start="<" end=">" contained contains=domeKeySpecialKeyKeyword  syntax match domeKeyDefinitionTrigger "\c\(<\(Up\|Play\|Down\)>\)\+" contained contains=domeKeySpecialKey @@ -38,8 +38,8 @@ syntax case match  highlight default link domeKeyComment Comment  highlight default link domeKeyType Statement -highlight default link domeKeySpecialKey Special -highlight default link domeKeySpecialKeyKeyword domeKeySpecialKey +highlight default link domeKeySpecialKeyGroup Special +highlight default link domeKeySpecialKeyKeyword domeKeySpecialKeyGroup  " TODO:  " - Escaping only in actions | 
