答案1
我找到的解决方案是将我的 ps1 从:
RESET="\[$(tput sgr0)\]"
GREEN="\[$(tput setaf 2)\]"
export PS1="${GREEN} MY PS1 ${RESET}"
到:
RESET="$(tput sgr0)"
GREEN="$(tput setaf 2)"
export PS1="\[${GREEN}\] MY PS1 \[${RESET}\]"
至于幕后发生了什么,我仍然不知道:(
我找到的解决方案是将我的 ps1 从:
RESET="\[$(tput sgr0)\]"
GREEN="\[$(tput setaf 2)\]"
export PS1="${GREEN} MY PS1 ${RESET}"
到:
RESET="$(tput sgr0)"
GREEN="$(tput setaf 2)"
export PS1="\[${GREEN}\] MY PS1 \[${RESET}\]"
至于幕后发生了什么,我仍然不知道:(