microsoft / vscode-mock-debug

Starter sample for developing debug adapters for VSCode.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to edit and continue while debugging the application?

PrabhakarMano opened this issue · comments

Is there any way to edit and continue option for read.md file while debugging with the help of mockdebugger?

no, the implementation of MockRuntime.ts is rather simple and does not reload automatically when the readme.md has changed.
But you could make MockRuntime.ts more sophisticated.

Thanks for response, Kindly suggest the approach how can we achieve it.

Use a file watcher on the readme.md and re-read the contents whenever a file change was detected.