diff options
Diffstat (limited to 'Completion/User/_x_options')
-rw-r--r-- | Completion/User/_x_options | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Completion/User/_x_options b/Completion/User/_x_options index 9c3a303bb..4e6b6ba80 100644 --- a/Completion/User/_x_options +++ b/Completion/User/_x_options @@ -1,10 +1,13 @@ #compdef -p */X11/* +local expl + # A simple pattern completion, just as an example. if [ "$words[CURRENT-1]" = "-display" ]; then _compskip=all _hosts -S ':0 ' -r : else - compadd -J options - -display -name -xrm + _description expl option + compadd "$expl[@]" - -display -name -xrm fi |