mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-18 21:41:57 +00:00
fix purge when dir contains weird shit
This commit is contained in:
parent
d81b4dbf68
commit
fa457a3282
1 changed files with 3 additions and 2 deletions
|
@ -2164,8 +2164,9 @@ function _p9k_vcs_status_purge() {
|
||||||
unsetopt nomatch
|
unsetopt nomatch
|
||||||
local dir=$1
|
local dir=$1
|
||||||
while true; do
|
while true; do
|
||||||
unset _P9K_LAST_GIT_PROMPT[$dir]
|
# unset doesn't work if $dir contains weird shit
|
||||||
unset _P9K_GIT_SLOW[$dir]
|
_P9K_LAST_GIT_PROMPT[$dir]=""
|
||||||
|
_P9K_GIT_SLOW[$dir]=""
|
||||||
[[ $dir == / ]] && break
|
[[ $dir == / ]] && break
|
||||||
dir=${dir:h}
|
dir=${dir:h}
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue