microsoft / vscode-mock-debug

Starter sample for developing debug adapters for VSCode.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question: how to hide stepback and reverse button on debug toolbar?

longwind91 opened this issue · comments

commented

I don't need stepback and reverse button,how to hide these buttons?Dose anyone know how to do that? Thank you very much!

image

in the function 'initializeRequest()'

set:

	response.body.supportsStepBack = false

to false

commented

in the function 'initializeRequest()'

set:

	response.body.supportsStepBack = false

to false

thank you very much! It works