We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f72b1a commit f5fa9f1Copy full SHA for f5fa9f1
src/main.rs
@@ -22,9 +22,9 @@ fn prepare_env() {}
22
fn prepare_env() {
23
// When starting from iTerm, these env vars could cause some display issues.
24
log::debug!("unset $TERM_PROGRAM");
25
- env::remove_var("TERM_PROGRAM");
+ unsafe { env::remove_var("TERM_PROGRAM") };
26
log::debug!("unset $TERM_PROGRAM_VERSION");
27
- env::remove_var("TERM_PROGRAM_VERSION");
+ unsafe { env::remove_var("TERM_PROGRAM_VERSION") };
28
}
29
30
fn check_nvim(vim_exe_path: &str) {
0 commit comments