1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 11:00:08 +00:00

Made VI-Mode plugin working again.

This commit is contained in:
Dominik Ritter 2015-09-22 18:30:59 +02:00
parent 2e7d0f14d2
commit b31d0ff395

View file

@ -880,6 +880,11 @@ $(print_icon 'MULTILINE_SECOND_PROMPT_PREFIX')"
fi
}
function zle-line-init zle-keymap-select {
powerlevel9k_prepare_prompts
zle reset-prompt
}
powerlevel9k_init() {
# Display a warning if the terminal does not support 256 colors
local term_colors
@ -902,6 +907,9 @@ powerlevel9k_init() {
# prepare prompts
add-zsh-hook precmd powerlevel9k_prepare_prompts
zle -N zle-line-init
zle -N zle-keymap-select
}
powerlevel9k_init "$@"