about summary refs log tree commit diff
path: root/Completion/X/_x_window
blob: bf0ad4d338d039848678e735bb6cee8927405d9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#autoload

local list expl

_tags windows || return 1

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