1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-01 04:46:08 +02:00

36054: _tmux: "local -x" serves no purpose

This commit is contained in:
Frank Terbeck 2015-08-10 15:27:28 +02:00
parent c7c15410b5
commit ad7ef9cf1f
2 changed files with 5 additions and 2 deletions

View File

@ -20,6 +20,9 @@
* 36057: Completion/Unix/Command/_tmux: _tmux: Replay all
arguments when dispatching to new _tmux()
* 36054: Completion/Unix/Command/_tmux: _tmux: "local -x" serves
no purpose
2015-08-10 Peter Stephenson <p.stephenson@samsung.com>
* 36045: Test/A05execution.ztst: make effect of failures

View File

@ -1605,7 +1605,7 @@ function _tmux() {
local curcontext="${curcontext}"
local mode state ret=1
local -a args
local -x tmuxcommand
local tmuxcommand
local tmux_describe=
args=(
@ -1665,7 +1665,7 @@ function _tmux() {
# description generation follows; only done on 1st _tmux call.
local f desc
local -A rev
local -x tmux_describe
local tmux_describe
tmux_describe='yes, please'
for f in ${(k)_tmux_aliasmap} ; do
rev+=( ${_tmux_aliasmap[$f]} $f )