你可以在VS Code窗口的顶部栏中删除文件名。

huangapple go评论46阅读模式
英文:

How can I remove the file name from the top bar of the VS Code window?

问题

有没有办法移除顶部栏中的文件名?它就在菜单栏旁边,我怀疑文件名是导致菜单栏的一部分被隐藏的原因(三个点在那里)。

英文:

Is there a way to remove the file name in the top bar? It is right next to the menu bar and I suspect that the file name is the reason why part of the menu bar is hidden (the three dots are there).

你可以在VS Code窗口的顶部栏中删除文件名。

答案1

得分: 1

在你的settings.json中添加以下内容:

"window.title": " "

如果你将它设置为空字符串而不是一个空格,它将显示"Visual Studio Code"。

或者,你可以更高级一些,使用Unicode的"Zero Width Space"字符(U+200B):

"window.title": "​"

上面的字符串中实际上包含一个字符,但你几乎看不到它,因为它是一个零宽度的空格:P

英文:

Put the following in your settings.json:

"window.title": " "

If you set it as an empty string instead of a space, it will instead display "Visual Studio Code".

Alternatively, you could be fancier and use the unicode "Zero Width Space" character (U+200B)

"window.title": "​"

You can't really tell there's a character in the string above because- well- it's a space with zero width 你可以在VS Code窗口的顶部栏中删除文件名。

huangapple
  • 本文由 发表于 2023年2月6日 16:02:23
  • 转载请务必保留本文链接:https://go.coder-hub.com/75358689.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定