diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Completion/Unix/Command/_tmux | 12 |
2 files changed, 2 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog index a6fd0070d..e24165ed4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,8 @@ * 36062: Completion/Unix/Command/_tmux: _tmux: Add support for new sub-commands + * 36063: Completion/Unix/Command/_tmux: _tmux: Remove dead code + 2015-08-10 Peter Stephenson <p.stephenson@samsung.com> * 36045: Test/A05execution.ztst: make effect of failures diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index 92c919068..a6e5e4a59 100644 --- a/Completion/Unix/Command/_tmux +++ b/Completion/Unix/Command/_tmux @@ -1231,18 +1231,6 @@ function __tmux-bound-keys() { _describe -t keys 'keys' keys } -function __tmux-choose-stuff() { - # choose-{client,session,window} accept exactly the same arguments, so... - local curcontext="${curcontext}" state - local -a args - args=( - '-t[choose a target pane]:panes:__tmux-panes' - '*:: :->tmpl' - ) - _arguments ${args} && return - __tmux-lastarg ${state} 'tmpl' 1 "tmux command template" -} - function __tmux-clients() { local expl local -a clients |