mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
fix: restore the cursor shape when exiting the app
This commit is contained in:
parent
38faf74feb
commit
655e3d3cbb
1 changed files with 5 additions and 1 deletions
|
@ -1202,7 +1202,11 @@ impl Application {
|
||||||
.backend_mut()
|
.backend_mut()
|
||||||
.show_cursor(CursorKind::Block)
|
.show_cursor(CursorKind::Block)
|
||||||
.ok();
|
.ok();
|
||||||
self.terminal.restore(terminal_config)
|
|
||||||
|
use std::io::Write;
|
||||||
|
|
||||||
|
self.terminal.restore(terminal_config)?;
|
||||||
|
write!(std::io::stdout(), "\x1B[0 q") // reset to cursor shape
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn run<S>(&mut self, input_stream: &mut S) -> Result<i32, Error>
|
pub async fn run<S>(&mut self, input_stream: &mut S) -> Result<i32, Error>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue