You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Howdy! When I start to get user input, the helix editor freezes and I'm unable to do anything, ctrl-c doesn't work and I end up having to kill the terminal.
Reproduction Steps
I tried this:
fn main() {
let mut line = String::new();
println!("Enter your name :");
let b1 = std::io::stdin().read_line(&mut line).unwrap();
println!("Hello , {}", line);
println!("no of bytes read , {}", b1);
}
:sh cargo run
I expected this to happen:
Runs and asks for user input
Summary
Howdy! When I start to get user input, the helix editor freezes and I'm unable to do anything, ctrl-c doesn't work and I end up having to kill the terminal.
Reproduction Steps
I tried this:
fn main() {
let mut line = String::new();
println!("Enter your name :");
let b1 = std::io::stdin().read_line(&mut line).unwrap();
println!("Hello , {}", line);
println!("no of bytes read , {}", b1);
}
:sh cargo run
I expected this to happen:
Runs and asks for user input
Instead, this happened:
Freezes until killed
Helix log
No response
Platform
Linux Fedora
Terminal Emulator
Gnome Default Terminal
Helix Version
helix 22.08.1 (66276ce)
The text was updated successfully, but these errors were encountered: