diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
commit | 071d4279d6ab81b7187b48f3a0fc61e587b6db6c (patch) | |
tree | 221cbe3c40e043163c06f61c52a7ba2eb41e12ce /runtime/syntax/icemenu.vim | |
parent | b4210b3bc14e2918f153a7307530fbe6eba659e1 (diff) | |
download | vim-071d4279d6ab81b7187b48f3a0fc61e587b6db6c.zip |
updated for version 7.0001
Diffstat (limited to 'runtime/syntax/icemenu.vim')
-rw-r--r-- | runtime/syntax/icemenu.vim | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/runtime/syntax/icemenu.vim b/runtime/syntax/icemenu.vim new file mode 100644 index 000000000..99109388a --- /dev/null +++ b/runtime/syntax/icemenu.vim @@ -0,0 +1,36 @@ +" Vim syntax file +" Language: Icewm Menu +" Maintainer: James Mahler <jmahler@purdue.edu> +" Last Change: Tue Dec 9 21:08:22 EST 2003 +" Extensions: ~/.icewm/menu +" Comment: Icewm is a lightweight window manager. This adds syntax +" highlighting when editing your user's menu file (~/.icewm/menu). + +" clear existing syntax +if version < 600 + syntax clear +elseif exists("bLcurrent_syntax") + finish +endif + +" not case sensitive +syntax case ignore + +" icons .xpm .png and .gif +syntax match _icon /"\=\/.*\.xpm"\=/ +syntax match _icon /"\=\/.*\.png"\=/ +syntax match _icon /"\=\/.*\.gif"\=/ +syntax match _icon /"\-"/ + +" separator +syntax keyword _rules separator + +" prog and menu +syntax keyword _ids menu prog + +" highlights +highlight link _rules Underlined +highlight link _ids Type +highlight link _icon Special + +let b:current_syntax = "IceMenu" |