How to change current break line color in debugging mode?

旧城冷巷雨未停 提交于 2019-12-13 03:43:49

问题


I am asking specifically for VSCode and not VS Studio - because there everything is totally simple.

How to change current break line color in debugging mode - i.e the line where the code execution stopped due to e.g. a breakpoint or singlestep action?

Currently this line is shown with a light yellow background.


回答1:


Looking at the documentation page, I found something that might help you:

Debug

  • debugToolBar.background: Debug toolbar background color.
  • debugToolBar.border: Debug toolbar border color.
  • editor.stackFrameHighlightBackground: Background color of the top stack frame highlight in the editor.
  • editor.focusedStackFrameHighlightBackground: Background color of the focused stack frame highlight in the editor.

I think one of the last two is what you're looking for.

Hope it helps.



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

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