mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
Explicitly detach from the console on exit
Without this cmd won't redraw it's prompt when alacritty exits
This commit is contained in:
parent
a54cc4ec60
commit
df82b5ffbd
1 changed files with 6 additions and 2 deletions
|
@ -43,7 +43,7 @@ use std::os::unix::io::AsRawFd;
|
|||
#[cfg(windows)]
|
||||
extern crate winapi;
|
||||
#[cfg(windows)]
|
||||
use winapi::um::wincon::{AttachConsole, ATTACH_PARENT_PROCESS};
|
||||
use winapi::um::wincon::{AttachConsole, FreeConsole, ATTACH_PARENT_PROCESS};
|
||||
|
||||
use alacritty::cli;
|
||||
use alacritty::config::{self, Config};
|
||||
|
@ -63,7 +63,7 @@ fn main() {
|
|||
// to the console of the parent process, so we do it explicitly. This fails
|
||||
// silently if the parent has no console.
|
||||
#[cfg(windows)]
|
||||
unsafe {AttachConsole(ATTACH_PARENT_PROCESS);}
|
||||
unsafe { AttachConsole(ATTACH_PARENT_PROCESS); }
|
||||
|
||||
// Load command line options and config
|
||||
let options = cli::Options::load();
|
||||
|
@ -272,5 +272,9 @@ fn run(mut config: Config, options: &cli::Options) -> Result<(), Box<Error>> {
|
|||
// FIXME patch notify library to have a shutdown method
|
||||
// config_reloader.join().ok();
|
||||
|
||||
// Without explicitly detaching the console cmd won't redraw it's prompt
|
||||
#[cfg(windows)]
|
||||
unsafe { FreeConsole(); }
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue