我最近在我的 Mac 上安装了一个新的 VS Code 实例,集成终端不再显示当前分支。
在旧世界中,它会使用 git 显示我现在在哪个分支上,并在我更改分支时更新。
现在,它显示了我在文件目录中的位置,git 正常工作,但不显示分支。
除了 GitHistory,我没有任何扩展。这是我的设置文件的摘录:
{
"workbench.statusBar.visible": false,
"explorer.decorations.colors": false,
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.closeOnFileDelete": true,
"workbench.editor.limit.enabled": true,
"workbench.editor.openPositioning": "first",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"terminal.integrated.scrollback": 50000,
"terminal.integrated.shell.osx": ""
}
问题不在于 VS 代码,因为您实际上是在查看终端。
您只需编辑定义终端显示方式的设置。
如果您使用的是 MacOS Catalina,则可以编辑该
~/.zshrc
文件。这应该是您需要的代码-