本文介绍了如何在调试模式下更改当前行颜色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在调试模式下更改当前行的颜色.
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.
例如,要更改选定的行,我们需要 editor.lineHighlightBackground"
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?
推荐答案
将没有[Base16 Dark Oceanic Next]"的自定义编写为:
Write the customization without "[Base16 Dark Oceanic Next]" as :
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#ff0000",
}
这篇关于如何在调试模式下更改当前行颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!