可以看到,当我写了很长的命令行时,zsh提示消失了,不知道为什么
.zshrc
:
autoload -U compinit promptinit
compinit
promptinit
zstyle ':completion:*:descriptions' format '%U%B%d%b%u'
zstyle ':completion:*:warnings' format '%BDésolé, pas de résultats pour : %d%b'
zstyle ':completion:*' menu select=2
zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
function powerline_precmd() {
PS1="$(~/powerline-shell.py $? --shell zsh 2> /dev/null)"
}
function install_powerline_precmd() {
for s in "${precmd_functions[@]}"; do
if [ "$s" = "powerline_precmd" ]; then
return
fi
done
precmd_functions+=(powerline_precmd)
}
if [ "$TERM" != "linux" ]; then
install_powerline_precmd
fi
bindkey ';5D' emacs-backward-word
bindkey ';5C' emacs-forward-word
我使用 Xfce4-terminal,我在 Debian 伸展
谢谢