问题
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