diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-06-01 22:38:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-06-01 22:38:45 +0200 |
commit | c873442b15bb94dc099363f6e1ffa57cc4d3ea04 (patch) | |
tree | ca9eecc75974b157665c25a99b083e9bf813154c /runtime/syntax/gnash.vim | |
parent | f13de07e492fc0a4a0af12434f3d282f9c989ed4 (diff) | |
download | vim-git-c873442b15bb94dc099363f6e1ffa57cc4d3ea04.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/syntax/gnash.vim')
-rw-r--r-- | runtime/syntax/gnash.vim | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/runtime/syntax/gnash.vim b/runtime/syntax/gnash.vim index dea3d05eb..f9e2b519a 100644 --- a/runtime/syntax/gnash.vim +++ b/runtime/syntax/gnash.vim @@ -1,11 +1,18 @@ " Vim syntax file -" Language: gnash(1) configuration files +" Maintainer: Thilo Six +" Contact: <vim-dev at vim dot org> +" http://www.vim.org/maillist.php#vim-dev +" +" Description: highlight gnash configuration files " http://www.gnu.org/software/gnash/manual/gnashuser.html#gnashrc -" Maintainer: Thilo Six <T.Six@gmx.de> -" Last Change: 2011 Dec 11 +" File: runtime/syntax/gnash.vim +" Last Change: 2012 May 19 " Modeline: vim: ts=8:sw=2:sts=2: -" Credidts: derived from readline.vim -" Nikolai Weibull +" +" Credits: derived from Nikolai Weibulls readline.vim +" +" License: VIM License +" Vim is Charityware, see ":help Uganda" " " For version 5.x: Clear all syntax items @@ -20,8 +27,8 @@ syn case match syn keyword GnashTodo contained TODO FIXME XXX NOTE " Comments -syn match GnashComment "^#.*$" contains=GnashTodo -syn match GnashComment "\s#.*$" contains=GnashTodo +syn match GnashComment "^#.*$" contains=@Spell,GnashTodo +syn match GnashComment "\s#.*$" contains=@Spell,GnashTodo syn match GnashNumber display '\<\d\+\>' @@ -84,7 +91,6 @@ hi def link GnashOn Identifier hi def link GnashOff Preproc hi def link GnashComment Comment hi def link GnashTodo Todo -hi def link GnashString String hi def link GnashNumber Type hi def link GnashSet String hi def link GnashKeyword Keyword |