英文:
visual studio code displaying the line from the opening curly brace, then closing curly brace
问题
当我在Linux上使用Visual Studio Code时,有一条从一个花括号到另一个的标记线。我不知道是什么负责显示它,也许是某种扩展。但在切换到Windows后,我再也看不到它了,尽管我似乎安装了相同的扩展。我不知道它叫什么,如何恢复它,也许有人知道吗?
英文:
When I worked in visual studio code on linux, there was such a strip from one curly brace to another. I do not know what was responsible for its display, maybe some kind of extension. But after switching to Windows, I don't see them anymore, although I seem to have installed the same extensions. I do not know what it is called and how to return it, maybe someone knows?
答案1
得分: 0
这是 editor.guides.bracketPairs
设置。默认值是 false
当未指定时,所以你必须在你的用户设置.json文件或工作区.vscode/settings.json
文件中将其设置为 true
。找出你在哪里设置了它,要么将其设置为 false
,要么删除那行以获得 false
作为默认值。
英文:
This is the editor.guides.bracketPairs
setting. The default value is false
when it's not specified, so you must have set it to true
in your user settings.json file or in your workspace .vscode/settings.json
file. Find out where you set it and either set it to false
or remove that line to get false
as the default value.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论