Andre Weinand

Results 23 comments of Andre Weinand

I don't think that this is a VS Code issue. The only question is: does the Java debugger support to communicate over a separate communication channel so that stdin/stdout if...

There are at least two obstacles that make collaboration between language servers and debuggers more difficult than expected: - VS Code knows nothing about language servers since they are an...

This is a pure js-debug feature request. VS Code knows nothing about the `runtimeVersion` property. @roblourens I've have removed you from the Assignees and we should consider to move this...

The mock debugger shows how to ask the user for a string/name from a launch config: https://github.com/Microsoft/vscode-mock-debug/blob/master/src/extension.ts#L23 The problem is that you cannot (yet) easily use this approach in a...

Since Microsoft/vscode#12735 has been implemented it is now possible to provide "Prompt for Arguments" functionality as an extension and use it in launch.json and task.json.

Applying what is said in https://code.visualstudio.com/docs/editor/variables-reference#_input-variables to the example from above: ```json { "version": "2.0.0", "tasks": [ { "label": "run tests", "command": "mocha", "args": [ "--opts", "tests/mocha.opts", "-g", "'${input:someArgs}'" ]...

@marvingreenberg your ONE MORE thing is covered by this feature request: https://github.com/microsoft/vscode/issues/83678

@marvingreenberg I just noticed that this issue lives in the "vscode-node-debug" repository and not "vscode", so it does not ask for a generic VS Code solution (which is not feasible...

@marvingreenberg I've unlocked https://github.com/microsoft/vscode/issues/83678

The [VS Code umbrella item](https://github.com/microsoft/vscode/issues/87448).