Kể từ khi nâng cấp từ El Capitain lên High Sierra (tôi đã nhảy qua Sierra), thiết bị đầu cuối của tôi để lại một dòng trống ở dưới cùng ngay khi tôi mở một tab khác. Xem hình như ví dụ:
Đây là ~ / .bash_profile của tôi
# Beautify bash prompt
function parse_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/on \1/'
}
export PS1="\e[1;30m\u\e[m in \e[0;34m\w\e[m \e[0;32m\$(parse_git_branch)\e[m \e[0;37m// \$(date '+%H:%M')\e[m\n$ "
# Extend PATH for Homebrew
export PATH="/usr/local/sbin:$PATH"
export PATH="$(brew --prefix homebrew/php/php70)/bin:$PATH"
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
Nó không phải là một vấn đề lớn, nhưng hơi khó chịu, đặc biệt là khi làm việc với tmux trong các phiên ssh.
Có ai biết điều gì gây ra điều này hoặc làm thế nào tôi có thể giải quyết nó?