Fix _lp_bzr_branch_color for zsh
Fixes #301 without affecting bash functionality
This commit is contained in:
parent
e26c075f63
commit
89a71c1c7d
@ -1061,7 +1061,10 @@ _lp_bzr_branch_color()
|
|||||||
local output
|
local output
|
||||||
output="$(bzr version-info --check-clean --custom --template='{branch_nick} {revno} {clean}' 2> /dev/null)"
|
output="$(bzr version-info --check-clean --custom --template='{branch_nick} {revno} {clean}' 2> /dev/null)"
|
||||||
[[ $? -ne 0 ]] && return
|
[[ $? -ne 0 ]] && return
|
||||||
local tuple=($output)
|
$_LP_SHELL_zsh && setopt local_options && setopt sh_word_split
|
||||||
|
local tuple
|
||||||
|
tuple=($output)
|
||||||
|
$_LP_SHELL_zsh && unsetopt sh_word_split
|
||||||
local branch=${tuple[_LP_FIRST_INDEX+0]}
|
local branch=${tuple[_LP_FIRST_INDEX+0]}
|
||||||
local revno=${tuple[_LP_FIRST_INDEX+1]}
|
local revno=${tuple[_LP_FIRST_INDEX+1]}
|
||||||
local clean=${tuple[_LP_FIRST_INDEX+2]}
|
local clean=${tuple[_LP_FIRST_INDEX+2]}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user