### Feature Request To debug an embedded target using a SEGGER J-Link I followed #9956. Debugging works fine. But the restart button does just stop the debugging. Currently I'm using [cortex-debug](https://github.com/Marus/cortex-debug) and there it is possible to overwrite commands as described [here](https://github.com/Marus/cortex-debug/issues/795#issuecomment-1365101449). ``` ... "overrideLaunchCommands": [ "monitor halt", "monitor reset", "-target-download", "monitor reset" ], "overrideResetCommands": [ "monitor reset", ], "overrideRestartCommands": [ "monitor reset", ] ... ``` Which then allows to restart the debugging with the built-in buttons.  Is there a similar thing already present? Or could this be added in the future?