-
Notifications
You must be signed in to change notification settings - Fork 38.2k
Closed
microsoft/vscode-js-debug
#2191Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugdebugDebug viewlet, configurations, breakpoints, adapter issuesDebug viewlet, configurations, breakpoints, adapter issues
Description
Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.98.1
- OS Version: Microsoft Windows Version 1809 (OS Build 17763.7009)
Steps to Reproduce:
- Run and Debug a foo.js file
- Place a breakpoint inside the file
- Once execution is paused in debugger, try to type into debug console
- Here lies the problem, Let's say there is a variable name
let foo = 32;before the breakpoint - Now I will start typing the
foin debug console - Now a suggestion box pops up and shows the
foovariable - I press arrows keys to select the suggestion row for the
foovariable - I press tab, and I expect the program to place the word
fooin the deub console promp - But what happens is program appends the word
footo the already two character that I typedfoand my the textbox of debug console will becomefofoo - A note I must mention, this issue does not happen when you are typing something after a dot character
- For example, If I type
foo.ba, and suggestions popup and I selectfoo.barand press tab, then the debug console will work as expected and puts thefoo.bartext in the textbox of the console. (so is ready to press enter)
(I can record a gif of it if you want)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugdebugDebug viewlet, configurations, breakpoints, adapter issuesDebug viewlet, configurations, breakpoints, adapter issues