Visual Studio 当前行 # 字体大小和颜色

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

我想更改当前行#的字体和颜色。 我在设置中找不到这个属性。

Current Line #

Settings

感谢您对这个问题的帮助。请指导我在 VS 中进行正确的设置。我希望能够更改当前行的字体和颜色#。

visual-studio
1个回答
0
投票

您需要为您的

settings.json
添加一些样式:

  1. 在 VSC 中打开设置面板
  2. 右上角有一个“打开设置(JSON)”按钮
  3. 添加以下内容:
"workbench.colorCustomizations": {
    "editorLineNumber.activeForeground": "#FF0000"
}

结果: enter image description here

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