mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-19 11:31:26 +01:00
36046: _tmux: Update command line options
New: -C and -V Removed: -q (tmux still excepts it for backward compatibility, but it does nothing)
This commit is contained in:
parent
fe924b270c
commit
783ce79a11
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-08-10 Frank Terbeck <ft@bewatermyfriend.org>
|
||||
|
||||
* 36046: Completion/Unix/Command/_tmux: _tmux: Update command line
|
||||
options
|
||||
|
||||
2015-08-10 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* 36045: Test/A05execution.ztst: make effect of failures
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue