Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
看看这个令人难以置信的截图。我正在 iTerm(一个 OS X 终端)内的 Nano 中编辑提交消息。我刚刚从 master 分支中提取了更改git@github.com:Compass/compass.git
git@github.com:Compass/compass.git
请注意所有大写字母如何显示正常,但没有小写字母!
即使在我关闭 Nano 后,这种情况仍然存在。我不得不关闭终端选项卡。
我的问题是……这怎么可能?哪个软件有什么“功能”?
这些是 VT100 画线字符。
您可以使用 复制它echo -e '\033(0'并使用 退出该模式echo -e '\033(B'。
echo -e '\033(0'
echo -e '\033(B'
或者,reset将重置终端并恢复正常。
reset