From d4a640775f8e6aad3a32a2ebcf4d049d728a9e8b Mon Sep 17 00:00:00 2001 From: Frank Terbeck Date: Mon, 21 Sep 2015 14:41:40 +0200 Subject: 36575: _tmux: ‘lock-server’ option is gone in tmux.git MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Completion/Unix/Command/_tmux | 2 -- 1 file changed, 2 deletions(-) (limited to 'Completion/Unix/Command/_tmux') diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index 49c2b63ed..3d4734bcd 100644 --- a/Completion/Unix/Command/_tmux +++ b/Completion/Unix/Command/_tmux @@ -1270,7 +1270,6 @@ function __tmux-option-guard() { 'history-limit:'${int_guard} 'lock-after-time:'${int_guard} 'lock-command:MSG:command string' - 'lock-server:DESC:on off' 'message-command-style:__tmux-style' 'message-style:__tmux-style' 'mouse:DESC:on off' @@ -1394,7 +1393,6 @@ function __tmux-session-options() { 'history-limit:number of copy-mode lines per window' 'lock-after-time:lock sessions after N seconds' 'lock-command:command to run for locking a client' - 'lock-server:make lock-after-time lock the server instead of sessions' 'message-command-style:status line message command style' 'message-style:status line message style' 'mouse:enable mouse support' -- cgit v1.2.3 From 5476e011f16664e601092c1e94e3332efe80720f Mon Sep 17 00:00:00 2001 From: Frank Terbeck Date: Mon, 21 Sep 2015 14:41:41 +0200 Subject: 36576: _tmux: Fix tmux homepage URI --- ChangeLog | 3 +++ Completion/Unix/Command/_tmux | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'Completion/Unix/Command/_tmux') diff --git a/ChangeLog b/ChangeLog index 29d45e721..221f57fbd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,9 @@ * 36575: Completion/Unix/Command/_tmux: _tmux: ‘lock-server’ option is gone in tmux.git + * 36576: Completion/Unix/Command/_tmux: _tmux: Fix tmux homepage + URI + 2015-09-21 Jun-ichi Takimoto * 36574: Completion/Unix/Command/_lldb: new completion for diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index 3d4734bcd..6f2cac790 100644 --- a/Completion/Unix/Command/_tmux +++ b/Completion/Unix/Command/_tmux @@ -1,6 +1,6 @@ #compdef tmux -# tmux completion for zsh . +# tmux completion for zsh . # # Configuration: # -- cgit v1.2.3 From c563f1ba83c40aab632ac958a1d3a57277ca22cc Mon Sep 17 00:00:00 2001 From: Daniel Shahaf Date: Fri, 20 Nov 2015 03:39:47 +0000 Subject: 37164: _tmux: Complete external commands --- ChangeLog | 3 +++ Completion/Unix/Command/_tmux | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) (limited to 'Completion/Unix/Command/_tmux') diff --git a/ChangeLog b/ChangeLog index 5ab68f7a1..252f2fc5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2015-11-20 Daniel Shahaf + * 37164: Completion/Unix/Command/_tmux: _tmux: Complete external + commands + * 37149: Completion/Unix/Command/_git: _git: Complete 'bisect/bad' ref diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index 6f2cac790..d218cc3f3 100644 --- a/Completion/Unix/Command/_tmux +++ b/Completion/Unix/Command/_tmux @@ -640,7 +640,7 @@ function _tmux-new-session() { '-t[specify target session]:sessions:__tmux-sessions' '-x[specify width]:width:_guard "[0-9]#" "numeric value"' '-y[specify height]:height:_guard "[0-9]#" "numeric value"' - '*:: :_command' + '*:: :_cmdstring' ) _arguments -s ${args} } @@ -657,7 +657,7 @@ function _tmux-new-window() { '-n[specify a window name]:window name:' '-P[print information about new window after it is created]' '-t[specify target window]:windows:__tmux-windows' - '*:: :_command' + '*:: :_cmdstring' ) _arguments ${args} } @@ -776,7 +776,7 @@ function _tmux-respawn-pane() { args=( '-k[kill window if it is in use]' '-t[choose target pane]:window:__tmux-pane' - '*::command:_command' + '*::command:_cmdstring' ) _arguments ${args} } @@ -787,7 +787,7 @@ function _tmux-respawn-window() { args=( '-k[kill window if it is in use]' '-t[choose target window]:window:__tmux-windows' - '*::command:_command' + '*::command:_cmdstring' ) _arguments ${args} } @@ -809,7 +809,7 @@ function _tmux-run-shell() { args=( '-b[run shell command in background]' '-t[choose target pane]:pane:__tmux-panes' - '*::command:_command' + '*::command:_cmdstring' ) _arguments ${args} } @@ -1042,7 +1042,7 @@ function _tmux-split-window() { # changing the command's name might annoy users. So it stays like # this. '-t[choose target pane]:window:__tmux-panes' - '*:: :_command' + '*:: :_cmdstring' ) _arguments ${args} && return } -- cgit v1.2.3