about summary refs log tree commit diff
path: root/Completion/User/_xsetroot
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-08-13 13:57:54 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-08-13 13:57:54 +0000
commit2d8280a3a771a991b95fbf771a4cd37525227c13 (patch)
tree5eb6b5d6e12923dec383e062bc8e3891d13d290c /Completion/User/_xsetroot
parentbcfde8db0082ae65cbc2ca9e7b34161984c8fd80 (diff)
downloadzsh-2d8280a3a771a991b95fbf771a4cd37525227c13.tar.gz
zsh-2d8280a3a771a991b95fbf771a4cd37525227c13.tar.xz
zsh-2d8280a3a771a991b95fbf771a4cd37525227c13.zip
sync up with zsh-workers_7430. #CVSPS.NO.BRANCH
Diffstat (limited to 'Completion/User/_xsetroot')
-rw-r--r--Completion/User/_xsetroot15
1 files changed, 15 insertions, 0 deletions
diff --git a/Completion/User/_xsetroot b/Completion/User/_xsetroot
new file mode 100644
index 000000000..74a0b6180
--- /dev/null
+++ b/Completion/User/_xsetroot
@@ -0,0 +1,15 @@
+#compdef xsetroot
+
+case "$words[CURRENT-1]" in
+-cursor) _files -/g '*.(#i)(xbm|curs(|or))'; return;;
+-cursor_name) _cursors; return;;
+-bitmap) _files -/g '*.(#i)xbm'; return;;
+-([fb]g|solid)) _colors; return;;
+esac
+
+if [[ CURRENT -gt 2 && "$words[CURRENT-2]" = -cursor ]]; then
+  _files -/g '*.(#i)(xbm|curs(|or)|mask)'
+else
+  compadd -M 'm:-=_ r:|_=*' - -help -def -cursor -cursor_name -bitmap -mod -gray -grey \
+                       -fg -bg -rv -solid -name
+fi