How to change current line color in debugging mode?

守給你的承諾、 提交于 2019-12-13 01:15:20

问题


I'm trying to change the color of a current line in a debugging mode.

So, I know how to change color in general, but don't know what is the name of the parameter.

for example, to change a selected line we need "editor.lineHighlightBackground"

  "workbench.colorCustomizations": {
    "[Base16 Dark Oceanic Next]": {
      "editor.lineHighlightBackground": "#ff0000",
    }
  }

but, how to change the line color which appears during debugging?


回答1:


Write the customization without "[Base16 Dark Oceanic Next]" as :

"workbench.colorCustomizations": {
  "editor.lineHighlightBackground": "#ff0000",
}


来源:https://stackoverflow.com/questions/51262762/how-to-change-current-line-color-in-debugging-mode

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!