diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/X/Command/.distfiles | 1 | ||||
-rw-r--r-- | Completion/X/Command/_xclip | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Completion/X/Command/.distfiles b/Completion/X/Command/.distfiles index 3b6dc49fa..c6835ea54 100644 --- a/Completion/X/Command/.distfiles +++ b/Completion/X/Command/.distfiles @@ -20,6 +20,7 @@ _urxvt _vnc _x_utils _xauth +_xclip _xdvi _xfig _xloadimage diff --git a/Completion/X/Command/_xclip b/Completion/X/Command/_xclip new file mode 100644 index 000000000..759251c28 --- /dev/null +++ b/Completion/X/Command/_xclip @@ -0,0 +1,14 @@ +#compdef xclip + +_arguments \ + '(-i -in -o -out)'{-i,-in}'[Read text into X selection]' \ + '(-i -in -o -out)'{-o,-out}'[Print selection to standard out]' \ + {-l,-loops}'[Number of selection requests to wait before exiting]:number:' \ + {-d,-display}'[X display to connect to]:X11 display:' \ + '(-)'{-h,-help}'[Usage information]' \ + '(-selection)-selection[Selection to access]:selection:(primary secondary clipboard buffer-cut)' \ + $'-noutf8[Use old Unicode, don\'t treat text as UTF-8]' \ + '(-)-version[version information]' \ + '(-quiet -verbose)-silent[Errors only, run in background]' \ + $'(-silent -verbose)-quiet[Run in foreground, show what\'s happening]' \ + '(-silent -quiet)-verbose[Running commentary]' |