Jan Jurzitza

Results 777 comments of Jan Jurzitza
trafficstars

ok, you can observe for settings changes in the extension frontend, but I don't know if it's possible to send custom packets to the debug adapter.

as a debugger is a separate process (debug adapter) that is run outside the vscode extension host, you can't really manipulate it with extensions. To support breakpoints just fork and...

I dislike this fix, retrying after a `Cannot execute this command while the target is running` error seems like bad practice. It should be possible to do a more reliable...

I see, launch does make sense for actually starting the application, but it feels like it could be confusing adding an additional "executable" field to the launch settings. Connecting to...

I too think a new executable argument with backwards compatibility from target (and deprecation message) would be very nice for the user indeed. With a new clear key for this...

hm for attach I don't think "target" is such a bad name

not sure if it happens because of this PR but the continue button doesn't show it anymore when it continues on the normal mode + the UI doesn't update when...

ah yeah that could be the reason. Here the source: (compile with dmd -g app.d) ```d import std.stdio; import core.thread; import core.sys.posix.unistd; import std.process; struct S { int a; long...

Yes, i did it like this because GDB has its own parameter parser and i cant pass arrays of strings into it, instead just that one. It also supports piping...

well from those things probably only `\\` will be a problem with GDB. GDB has a parser for arguments in it like bash/sh. So basically it will be exactly the...