如何在 Visual Studio Code 中更改标尺的颜色
Posted
技术标签:
【中文标题】如何在 Visual Studio Code 中更改标尺的颜色【英文标题】:How change the color of rulers in Visual Studio Code 【发布时间】:2017-10-07 23:44:40 【问题描述】:不确定此功能是否包含在 VSCode 设置中,但我希望将标尺颜色从默认的灰色更改。
试过了:
"editor.rulers.color": "color"
但出现“未知配置设置错误。”
【问题讨论】:
【参考方案1】:在settings.json
:
"workbench.colorCustomizations":
"editorRuler.foreground": "#ff333388"
【讨论】:
这对我来说非常有效!如果我想查看.view-ruler
的其他属性还有哪些要更改,我在哪里可以找到它们?例如,我希望它更厚一些(我尝试设置 width
但它没有改变任何东西)。
啊哈!我离开了! important
,就是这样。再次感谢!【参考方案2】:
从 2020 年 2 月的 v1.43 版本开始,您可以设置每个标尺的颜色。像这样使用:
"editor.rulers": [
"column": 80,
"color": "#ff00ff"
,
100, // a ruler with the default or editorRuler.foreground color at column 100
"column": 120,
"color": "#ff0000"
,
],
在此处查看发行说明:https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_43.md#multiple-rulers-with-different-colors
【讨论】:
以上是关于如何在 Visual Studio Code 中更改标尺的颜色的主要内容,如果未能解决你的问题,请参考以下文章
Deepin系统中如何安装Visual Studio Code
如何在 Linux 中安装 Visual Studio Code