about summary refs log tree commit diff
path: root/Completion/X
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:08:45 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:08:45 +0000
commitd0b3915846fee333b69095923c684a770ab4b4dd (patch)
treefed12ef09d0c27d469a8fe887439870944e0ab5a /Completion/X
parent366003f25540cc4199721dae03e270bd31e9de34 (diff)
downloadzsh-d0b3915846fee333b69095923c684a770ab4b4dd.tar.gz
zsh-d0b3915846fee333b69095923c684a770ab4b4dd.tar.xz
zsh-d0b3915846fee333b69095923c684a770ab4b4dd.zip
moved to Completion/X/Type/_x_colormapid
Diffstat (limited to 'Completion/X')
-rw-r--r--Completion/X/_x_colormapid16
1 files changed, 0 insertions, 16 deletions
diff --git a/Completion/X/_x_colormapid b/Completion/X/_x_colormapid
deleted file mode 100644
index 61b0a72f1..000000000
--- a/Completion/X/_x_colormapid
+++ /dev/null
@@ -1,16 +0,0 @@
-#autoload
-
-local expl list desc
-
-_tags colormapids || return 1
-
-list=(${(f)"$(xprop -root -f RGB_COLOR_MAP 32xcccccccxx ': $0\n'|awk -F'[ ():]' '/^[a-zA-Z_]+\(RGB_COLOR_MAP\)/ {print $5, "--", $1}')"})
-
-if zstyle -T ":completion:${curcontext}:colormap-id" verbose; then
-  desc=(-ld list)
-else
-  desc=()
-fi
-
-_wanted colormapids expl 'colormap id' \
-    compadd "$@" "$desc[@]" - "${(@)list%% *}"