diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_tmux | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index 9fa62449c..aa23fd863 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-11-15 Peter Stephenson <p.w.stephenson@ntlworld.com> + * Frank Terbeck: 27407: Completion/Unix/Command/_tmux: + switch-client subcommand. + * Benjamin R. Haskell: users/14565, 27399: Completion/Unix/Command/_env: argument problem. @@ -12341,5 +12344,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4812 $ +* $Revision: 1.4813 $ ***************************************************** diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index 0eef68382..10a1eb223 100644 --- a/Completion/Unix/Command/_tmux +++ b/Completion/Unix/Command/_tmux @@ -1002,8 +1002,8 @@ function _tmux-switch-client() { [[ -n ${tmux_describe} ]] && print "Switch the client to another session" && return local -a args args=( - '-c[Choose a target client]:client:__tmux-key-clients' - '-t[Choose a target window]:window:__tmux-key-windows' + '-c[Choose a target client]:client:__tmux-clients' + '-t[Choose a target window]:window:__tmux-windows' ) _arguments ${args} } |