From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15640 invoked by alias); 10 Aug 2015 13:33:46 -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: 36046 Received: (qmail 8306 invoked from network); 10 Aug 2015 13:33:44 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS autolearn=ham autolearn_force=no version=3.4.0 From: Frank Terbeck To: zsh-workers@zsh.org Subject: [PATCH 01/18] _tmux: Update command line options Date: Mon, 10 Aug 2015 15:27:21 +0200 Message-Id: <1439213258-14196-2-git-send-email-ft@bewatermyfriend.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1439213258-14196-1-git-send-email-ft@bewatermyfriend.org> References: <1439213258-14196-1-git-send-email-ft@bewatermyfriend.org> X-Df-Sender: NDMwNDQ0 New: -C and -V Removed: -q (tmux still excepts it for backward compatibility, but it does nothing) --- Completion/Unix/Command/_tmux | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index f0cc4be..7e192ab 100644 --- a/Completion/Unix/Command/_tmux +++ b/Completion/Unix/Command/_tmux @@ -1499,13 +1499,14 @@ function _tmux() { '-2[force using 256 colours]' '-8[force using 88 colours]' '-c[execute a shell command]:command name:_command_names' + '-C[start tmux in contol mode. -CC disables echo]' '-f[specify configuration file]:tmux config file:_files -g "*(-.)"' '-l[behave like a login shell]' '-L[specify socket name]:socket name:__tmux-socket-name' - '-q[do not send informational messages]' '-S[specify socket path]:server socket:_path_files -g "*(=,/)"' '-u[force using UTF-8]' '-v[request verbose logging]' + '-V[report tmux version]' '*:: :->subcommand_or_options' ) _arguments -C -s -w ${args} && ret=0 -- 2.1.4