about summary refs log tree commit diff
path: root/Completion/X/_x_window
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/X/_x_window')
-rw-r--r--Completion/X/_x_window19
1 files changed, 19 insertions, 0 deletions
diff --git a/Completion/X/_x_window b/Completion/X/_x_window
new file mode 100644
index 000000000..118c7f131
--- /dev/null
+++ b/Completion/X/_x_window
@@ -0,0 +1,19 @@
+#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