1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-28 05:00:59 +01:00
zsh/Completion/User/_x_options
1999-08-24 09:17:41 +00:00

12 lines
224 B
Text

#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