Can't use Backspace when using Terminal mode for Debugging
See original GitHub issue- VSCode Version: 1.41.1
- OS Version: Windows 10 Pro 64-bit (10.0, Build 18362)
Steps to Reproduce:
- create launch.json
- write
"console": "terminal"
in yourconfigurations
- write the following code that take an input from user :
import 'dart:io';
main() {
stdout.writeln('what is Your Name ?');
String name = stdin.readLineSync();
print('Welcome $name');
}
- start debugging
then i can input value , but i can’t use backspace
key to undo the text while i write in console.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Help! Backspace Doesn't Work in the Linux Terminal
Backspace and Tab keys might not work properly when you're logged in remotely to a Linux system. Here's how you can easily remediate...
Read more >Backspace doesn't work in Visual Studio - Stack Overflow
In Visual Studio go to: Tools Options Environment Keyboard. Find "Edit.DeleteBackwards" command. In "Use new shortcut in:" dropdown select "Text Editor".
Read more >Backspace, command and arrow keys don't work after an ...
I'm using 11.1.2 with the scala plugin 0.5.907 on a Mac running Lion and Java 6. Periodically my backspace, command and arrow keys...
Read more >Backspace, Delete, Arrow Keys, Ctrl/Shift, etc. stop working ...
I can't move with the arrow keys. If I try to use arrow up/down, the drop-down menus above/below the editor get focus (i.e....
Read more >Mapping control-H in insert mode doesn't work
The problem is that many terminal emulators emit a <C-h> (0x08) when you press <Backspace> , there is no way for Vim to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@gogoIsComing ah, thanks! It may be an extension issue, but the sample code fails in the same way and I can’t see a way in the API for us to handle it. I’ll keep this open while waiting for a response though. Thanks!
This happens even using the VS Code “local echo” sample code in the docs, and it’s not clear whether it’s fixable in the extension. I’ve opened https://github.com/microsoft/vscode/issues/90618.
Re-opening this issue because it seems a certain bug, and it’s not clear if we need to do work here yet.