1
0
Fork 0
mirror of https://github.com/zdharma-continuum/zinit-configs.git synced 2025-01-31 04:08:16 +01:00
zinit-configs/NICHOLAS85/zinit/snippets/config/patches/zsh-dircycle.patch
vladislav doster 92f7b7ff82
maint: normalize configuration file names to be "zshrc" (#11)
Signed-off-by: Vladislav Doster <mvdoster@gmail.com>
2022-06-04 07:40:14 -05:00

30 lines
968 B
Diff

p10k support, Affect dirstack and chwpd
--- michaelxmcbride---zsh-dircycle/dircycle.zsh 2020-10-14 03:42:40.565527743 -0400
+++ michaelxmcbride---zsh-dircycle/dircycle.zsh-patch 2020-10-14 03:42:32.315653673 -0400
@@ -5,20 +5,22 @@
[[ ${#dirstack} -eq 0 ]] && return
- while ! builtin pushd -q $1 &>/dev/null; do
+ while ! builtin pushd $1 &>/dev/null; do
# A missing directory was found; pop it out of the directory stack.
- builtin popd -q $1
+ builtin popd $1
# Stop trying if there are no more directories in the directory stack.
[[ ${#dirstack} -eq 0 ]] && break
done
-
+
# Trigger a prompt update if using Pure (https://github.com/sindresorhus/pure).
if typeset -f prompt_pure_setup > /dev/null; then
prompt_pure_async_tasks
prompt_pure_preprompt_render
else
- zle reset-prompt
+ _p9k_precmd
+ zle .reset-prompt
+ zle -R
fi
}