Vscode终端不显示文件夹和分支

问题描述 投票:0回答:1

以下是我看到终端的方式:

enter image description here

由于某种原因,Vscode默认不显示文件夹名称和git分支。我在另一个没有自定义设置的系统上有vscode,它也会显示它们以及颜色。

vscode设置:

{
    "workbench.colorTheme": "Monokai Dimmed",
    "workbench.iconTheme": "material-icon-theme",
    "terminal.integrated.copyOnSelection": true,
    "terminal.integrated.cursorBlinking": true,
}
terminal visual-studio-code vscode-settings
1个回答
1
投票

终端提示中的文件夹名称和分支来自shell,而不是来自VS Code。

系统的一个shell可能有一个自定义提示集,而另一个没有。使用系统终端时也应该看到这一点。解决方案是将两个系统上的提示配置为相同

您也可以尝试使用configuring the shell that VS Code uses来确保VS Code的集成终端在正确的环境中使用正确的shell

© www.soinside.com 2019 - 2024. All rights reserved.