diff --git a/src/main.rs b/src/main.rs index a7199bb..a61e480 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,6 @@ +// Hide console window on Windows in release builds +#![cfg_attr(all(target_os = "windows", not(debug_assertions)), windows_subsystem = "windows")] + mod config; mod file_tab; mod highlight;