VS Code

VS Code 设置 鼠标所在行 的行数高亮。

"workbench.colorCustomizations": {
        "editorLineNumber.foreground": "#615f5f",
        "editorLineNumber.activeForeground": "#e0dfdf"  
    },

但一直没起效果。最后才知道要想activeForeground起作用,必须先设置

 

"editor.renderLineHighlight": 为 all 或者 gutter ,而默认不是这两个值之一。估计是line 或者none。因此添加下面一行就可以了。

"editor.renderLineHighlight":"all"

 

你可能感兴趣的:(经验总结,VSCODE,JS)