VS代码,支架对着色器不起作用。我必须捐款才能使它起作用吗?我已经打开所有设置,没有运气

发布于 2025-02-02 21:25:27 字数 84 浏览 1 评论 0原文

正确打开所有设置。不起作用。但是,我几周前正在工作。我 得到他们要求捐款的信息。是合法的吗?并且它会在 捐款?我会没有它,但这是一个非常好的和有效的功能!

Turn on all setting correctly. Not working. However, I few weeks ago is was working. I
get a message that they are asking for a donation. Is is legal? And will it work after
the donation? I would live without it, but is is a very nice and effective feature!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

蒲公英的约定 2025-02-09 21:25:27

我终于找到了罪魁祸首!这条线基本上覆盖了我所有与支架相关的设置:

// "editor.language.brackets": [],

只是对其进行评论,现在所有这些都用我的主题起作用,不需要其他扩展!

"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.guides.bracketPairs": true,

I finally found the dang culprit! This line was basically overwriting all of my bracket-related settings:

// "editor.language.brackets": [],

Just commented it out and now these all work with my theme and no need for another extension!

"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.guides.bracketPairs": true,
眼前雾蒙蒙 2025-02-09 21:25:27

如果您在激活默认的支架对上色仪时面临麻烦,那么这里是要遵循的步骤。在VS代码中, ctrl + shift + p >在搜索框中键入JSON>单击打开的用户设置(JSON)。在settings.json文件中,搜索“括号”>删除所有与支架相关的条目。

现在,只需在将逗号放在线的末端之后,将以下2行写在2行之下:

“ editor.bracketpaircolorization.enabled”:true,

“ editor.guide.guide.bracketpairs”:true,true,true,true,

If you are facing trouble activating the default bracket pair colorizer then here are the steps to follow. In VS Code, Ctrl + Shift + P > type json in search box > click on Open User Settings(JSON). In settings.json file, search for 'bracket' > delete all bracket-related entries.

Now just write below 2 lines anywhere after putting a comma at the end of the line before them :

"editor.bracketPairColorization.enabled": true,

"editor.guides.bracketPairs": true,

雄赳赳气昂昂 2025-02-09 21:25:27

支架对着色器不再维护。它已经过时了。

相反,您可以通过在 settings.json 中添加此一行来使括号为括号着色:

"editor.bracketPairColorization.enabled": true

Bracket Pair Colorizer is no longer maintained. It's outdated.

Instead, you can colorize your brackets by adding this single line to your settings.json:

"editor.bracketPairColorization.enabled": true
眼泪也成诗 2025-02-09 21:25:27
  1. 支架对着色器功能现在内置在VS代码中。因此,甚至不要安装该扩展名。

2.如果您在设置中添加以下行。JSON文件

  { 
    “ editor.bracketpaircolorization.enabled”:true,                                       
    “ editor.guides.bracketpairs”:“活动”
  }
 
  • 没有任何区别。

  • 无需捐赠,甚至打开任何设置。

  1. Bracket pair colorizer functionality is now built into VS Code. So don't even install that extension.

enter image description here

2.Even if you add the below line in settings.json file

  { 
    "editor.bracketPairColorization.enabled": true,                                       
    "editor.guides.bracketPairs": "active"
  }
  • Doesn't make any difference.

  • No need of donation, and even turning on any setting.

傲娇萝莉攻 2025-02-09 21:25:27

支架对着色器功能现在已内置在VS代码中。因此,甚至不要安装该扩展名。

即使您在设置中保留以下行。

{ 
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active"
}

Bracket pair colorizer functionality is now built into VS Code. So don't even install that extension.

even if you keep the below line in settings.json, there is no difference

{ 
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active"
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文