diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2026-05-07 20:07:50 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2026-05-16 18:28:26 +0200 |
| commit | dd4666d82ec24777c47a8f0ffcdc2dde417d7802 (patch) | |
| tree | 73d373828fccfc29ecb748eb72d43824d1ee8458 /Completion/Unix/Command/_tmux | |
| parent | 54531: completers: remove spurious ; in "case $foo; in" (diff) | |
| download | zsh-dd4666d82ec24777c47a8f0ffcdc2dde417d7802.tar zsh-dd4666d82ec24777c47a8f0ffcdc2dde417d7802.tar.gz zsh-dd4666d82ec24777c47a8f0ffcdc2dde417d7802.tar.bz2 zsh-dd4666d82ec24777c47a8f0ffcdc2dde417d7802.tar.lz zsh-dd4666d82ec24777c47a8f0ffcdc2dde417d7802.tar.xz zsh-dd4666d82ec24777c47a8f0ffcdc2dde417d7802.tar.zst zsh-dd4666d82ec24777c47a8f0ffcdc2dde417d7802.zip | |
54532: completers: various small fixes
_find: - and + were reversed compared to the disp string
_zstyle: fix typo breaking chpwd-specific style completion
_sudo: minor typo in exclusion list
_rsync: fix some minor thinkos
_ip: fix a few typos
_sort: remove double --ignore-nonprinting line
_df: fix typo widge -> wedge
_tmux: fix various issues
_mount: defperm confusion
_sed: typo
_netstat: fix -4/-6 typo
_wget: fix some syntactical typos
_subversion: fix using wrong cache name
_lsof: typo
_ffmpeg: fix copy-pasto in for scodecs
_ansible: --skip-tags also takes tags
Diffstat (limited to 'Completion/Unix/Command/_tmux')
| -rw-r--r-- | Completion/Unix/Command/_tmux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index 62b8cdf7c..80c69d2fb 100644 --- a/Completion/Unix/Command/_tmux +++ b/Completion/Unix/Command/_tmux @@ -567,7 +567,7 @@ _tmux-list-windows() { [[ -n ${tmux_describe} ]] && print "list windows of a session" && return _arguments -s \ '-a[list all windows the tmux server possesses]' \ - '-F[specify output format]:format:__tmux-formats' \ + '-F+[specify output format]:format:__tmux-formats' \ '-f+[filter items]:filter format:__tmux-formats' \ '-t+[specify session]:session:__tmux-sessions' } @@ -764,7 +764,7 @@ _tmux-respawn-pane() { '-c+[specify a new working directory for the pane]:directory:_directories' \ '*-e[specify environment variable]:environment variable:_parameters -g "*export*" -qS=' \ '-k[kill window if it is in use]' \ - '-t+[specify target pane]:pane:__tmux-pane' \ + '-t+[specify target pane]:pane:__tmux-panes' \ ':command:_cmdambivalent' } @@ -886,7 +886,7 @@ _tmux-server-access() { } _tmux-set-buffer() { - [[ -n ${tmux_describe} ]] && print "set contents of a paster buffer" && return + [[ -n ${tmux_describe} ]] && print "set contents of a paste buffer" && return _arguments -s -A "-*" -S \ '-a[append to rather than overwriting target buffer]' \ '-b+[specify target buffer index]:pane:__tmux-buffers' \ @@ -999,7 +999,7 @@ _tmux-show-hooks() { _tmux-show-buffer() { [[ -n ${tmux_describe} ]] && print "display the contents of a paste buffer" && return - _arguments '-b[specify target buffer index]:pane:->buffer' + _arguments '-b[specify target buffer index]:buffer:__tmux-buffers' } _tmux-show-environment() { |
