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-31 10:46:38 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-08-31 10:46:38 +0000
commit5a0164d05551ae223ca445380c1b5b42bf572fa5 (patch)
treecd17c64b991d50c69a0a7a5a664e843b28860623 /Completion/User/_xsetroot
parenta0de0207d067ea14d782cc70bf8f6ad1ac71da6d (diff)
downloadzsh-5a0164d05551ae223ca445380c1b5b42bf572fa5.tar.gz
zsh-5a0164d05551ae223ca445380c1b5b42bf572fa5.tar.xz
zsh-5a0164d05551ae223ca445380c1b5b42bf572fa5.zip
zsh-3.1.6-pws-2
Diffstat (limited to 'Completion/User/_xsetroot')
-rw-r--r--Completion/User/_xsetroot15
1 files changed, 0 insertions, 15 deletions
diff --git a/Completion/User/_xsetroot b/Completion/User/_xsetroot
deleted file mode 100644
index 74a0b6180..000000000
--- a/Completion/User/_xsetroot
+++ /dev/null
@@ -1,15 +0,0 @@
-#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