about summary refs log tree commit diff
path: root/Completion/User/_x_options
blob: fd8d2034edc00545cdd8e7fc25f9f2cba8861156 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#compdef -P */X11/*

local expl

# A simple pattern completion, just as an example.

if [ "$words[CURRENT-1]" = "-display" ]; then
  _x_display
else
  _description expl option  
  compadd "$expl[@]" - -display -name -xrm
fi