diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:12:27 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:12:27 +0000 |
commit | e6ee80809dafeaf9e24ae0b4f794b55feab0adf0 (patch) | |
tree | fab6e4d63fb35a34f5512422ad1eb1147c941804 /Completion | |
parent | 58151b5eb38eabfaddd24e170a833b384f2e0ea3 (diff) | |
download | zsh-e6ee80809dafeaf9e24ae0b4f794b55feab0adf0.tar.gz zsh-e6ee80809dafeaf9e24ae0b4f794b55feab0adf0.tar.xz zsh-e6ee80809dafeaf9e24ae0b4f794b55feab0adf0.zip |
moved to Completion/X/Type/_x_window
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/X/_x_window | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Completion/X/_x_window b/Completion/X/_x_window deleted file mode 100644 index 24d6048a7..000000000 --- a/Completion/X/_x_window +++ /dev/null @@ -1,18 +0,0 @@ -#autoload - -local list expl - -_tags windows || return 1 - -list=( "${(@)${(M@)${(@f)$(_call windows xwininfo -root -tree)}:#[ ]#0x[0-9a-f]# \"*}##[ ]#}" ) - -if [[ "$1" = -n ]]; then - shift - - _wanted windows expl 'window name' \ - compadd "$@" -d list - "${(@)${(@)list#*\"}%%\"*}" -else - [[ "$1" = - ]] && shift - - _wanted windows expl 'window ID' compadd "$@" -d list - "${(@)list%% *}" -fi |