summaryrefslogtreecommitdiffstats
path: root/syntax/icemenu.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2017-09-28 22:18:09 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2017-09-28 22:18:09 +0200
commit27903c5b8656c796564ef073c1ebe77a2f0154e1 (patch)
tree2b0a3a14494d7976fb79a7517706e25d2a95d080 /syntax/icemenu.vim
parentd5e38fa97bc50a93a66473d6cd7072fbcbadda57 (diff)
downloadvim-polyglot-3.0.0.tar.gz
vim-polyglot-3.0.0.zip
Revert inlining basic language packv3.0.0
Diffstat (limited to 'syntax/icemenu.vim')
-rw-r--r--syntax/icemenu.vim38
1 files changed, 0 insertions, 38 deletions
diff --git a/syntax/icemenu.vim b/syntax/icemenu.vim
deleted file mode 100644
index a107b149..00000000
--- a/syntax/icemenu.vim
+++ /dev/null
@@ -1,38 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vim') == -1
-
-" Vim syntax file
-" Language: Icewm Menu
-" Maintainer: James Mahler <James.Mahler@gmail.com>
-" Last Change: Fri Apr 1 15:13:48 EST 2005
-" Extensions: ~/.icewm/menu
-" Comment: Icewm is a lightweight window manager. This adds syntax
-" highlighting when editing your user's menu file (~/.icewm/menu).
-
-" quit when a syntax file was already loaded
-if exists("b:current_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"
-
-endif