about summary refs log tree commit diff
path: root/Completion/X/_x_colormapid
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-03-24 11:29:19 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-03-24 11:29:19 +0000
commit262d0ad88d7b09bf91fef22b7bb90a4b09a3a72e (patch)
treede4c55c02b5cccad792ec46c94614a84e9c1efa8 /Completion/X/_x_colormapid
parent18aa6da676f228a90b30ad49a452b05aaad89718 (diff)
downloadzsh-262d0ad88d7b09bf91fef22b7bb90a4b09a3a72e.tar.gz
zsh-262d0ad88d7b09bf91fef22b7bb90a4b09a3a72e.tar.xz
zsh-262d0ad88d7b09bf91fef22b7bb90a4b09a3a72e.zip
zsh-workers/10223
Diffstat (limited to 'Completion/X/_x_colormapid')
-rw-r--r--Completion/X/_x_colormapid15
1 files changed, 15 insertions, 0 deletions
diff --git a/Completion/X/_x_colormapid b/Completion/X/_x_colormapid
new file mode 100644
index 000000000..4fe6aac42
--- /dev/null
+++ b/Completion/X/_x_colormapid
@@ -0,0 +1,15 @@
+#autoload
+
+local expl list desc
+
+_wanted colormapids expl 'colormap id' || 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
+
+compadd "$expl[@]" "$@" "$desc[@]" - "${(@)list%% *}"