-
Notifications
You must be signed in to change notification settings - Fork 340
Closed
Labels
in dartRelates to running Dart programsRelates to running Dart programsin debuggingRelates to the debug adapter or process of running debug sessionsRelates to the debug adapter or process of running debug sessionsis bug
Milestone
Description
- 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.
Metadata
Metadata
Assignees
Labels
in dartRelates to running Dart programsRelates to running Dart programsin debuggingRelates to the debug adapter or process of running debug sessionsRelates to the debug adapter or process of running debug sessionsis bug
