1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 21:44:11 +01:00
zsh/Completion/X/_x_window

20 lines
399 B
Plaintext
Raw Normal View History

1999-09-21 03:34:56 +02:00
#autoload
setopt localoptions extendedglob
local list expl
list=( "${(@)${(M@)${(@f)$(xwininfo -root -tree)}:#[ ]#0x[0-9a-f]# \"*}##[ ]#}" )
if [[ "$1" = -n ]]; then
shift
_description expl 'window name'
compadd "$@" "$expl[@]" -d list - "${(@)${(@)list#*\"}%%\"*}"
else
[[ "$1" = - ]] && shift
_description expl 'window ID'
compadd "$@" "$expl[@]" -d list - "${(@)list%% *}"
fi