Change error highlight color in vs code

前端 未结 3 1324
囚心锁ツ
囚心锁ツ 2021-01-05 16:38

I build a project and get some problems in the \"Problems view\", I click on the problem to see a line of code with that problem highlighted.

And it gets highlighted

3条回答
  •  失恋的感觉
    2021-01-05 17:14

    Apparently, you can actually change it without using an extension. I created an issue and got the answer that this color is called editor.rangeHighlightBackground and you can override it in your User Settings (settings.json) by:

    {
        "workbench.colorCustomizations": {
            "editor.rangeHighlightBackground": "#00AA00"
        }
    }
    

    To open User Settings just use Cmd+, on mac or Ctrl+, on windows

提交回复
热议问题