Closed
Description
The current VSCode debugging experience feel subpar to that of chrome devtools or F12 console.
Proposal:
debugAdapter sends getConsoleCompletionsAtPosition(text: string, pos: number): ConsoleCompletions[] as user is typing.
debugAdapter returns back a list of completions
interface ConsoleCompletions {
text: string;
pos: number; // where to apply this completion
.. other info
}
I'm not sure of the exact completions structure but happy to have input from other adapter folks.