diff options
author | Frank Terbeck <ft@bewatermyfriend.org> | 2015-08-10 15:27:36 +0200 |
---|---|---|
committer | Frank Terbeck <ft@bewatermyfriend.org> | 2015-08-10 16:50:54 +0200 |
commit | 5c19edb44b4e282a261ec921eee6f290f19a6753 (patch) | |
tree | 07bf60281e0776b5f6981fc60ae4684b5d2b1169 /Completion/Unix/Command | |
parent | 5fc821cbbd7c13d1a26773d61a40a7d0206077be (diff) | |
download | zsh-5c19edb44b4e282a261ec921eee6f290f19a6753.tar.gz zsh-5c19edb44b4e282a261ec921eee6f290f19a6753.tar.xz zsh-5c19edb44b4e282a261ec921eee6f290f19a6753.zip |
36055: _tmux: Add support for new server options
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_tmux | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index 6e8f0fa91..36416b0b9 100644 --- a/Completion/Unix/Command/_tmux +++ b/Completion/Unix/Command/_tmux @@ -1305,8 +1305,12 @@ function __tmux-option-guard() { 'buffer-limit:'${int_guard} 'default-terminal:MSG:terminal string' 'escape-time:'${int_guard} + 'exit-unattached:DESC:on off' + 'focus-events:DESC:on off' + 'history-file:_path-files -g "*(-.)"' 'message-limit:'${int_guard} 'quiet:DESC:on off' + 'set-clipboard:DESC:on off' 'terminal-overrides:MSG:overrides string' ) else @@ -1452,8 +1456,12 @@ function __tmux-server-options() { 'buffer-limit:number of buffers kept per session' 'default-terminal:default terminal definition string' 'escape-time:set timeout to detect single escape characters (in msecs)' + 'exit-unattached:make server exit if it has no attached clients' + 'focus-events:request focus events from terminal' + 'history-file:tmux command history file name' 'message-limit:set size of message log per client' 'quiet:enable/disable the display of various informational messages' + 'set-clipboard:use esc sequences to set terminal clipboard' 'terminal-overrides:override terminal descriptions' ) _describe -t tmux-server-options 'tmux server option' tmux_server_options |