From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5049 invoked by alias); 14 Nov 2009 20:19:08 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 27407 Received: (qmail 87 invoked from network); 14 Nov 2009 20:19:06 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received-SPF: none (ns2.melb.primenet.com.au: domain at bewatermyfriend.org does not designate permitted sender hosts) From: Frank Terbeck To: zsh-workers@zsh.org Subject: PATCH: _tmux: fix helper function calls Date: Sat, 14 Nov 2009 21:17:30 +0100 Message-Id: <1258229850-27613-1-git-send-email-ft@bewatermyfriend.org> X-Mailer: git-send-email 1.6.5.rc2 X-Df-Sender: 430444 I've just been informed that the switch-client subcommand completion of _tmux is broken. This fixes it. Regards, Frank --- Completion/Unix/Command/_tmux | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index 0eef683..10a1eb2 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} } -- 1.6.5.rc2