mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-19 05:13:44 +08:00
fmt!
Some checks are pending
make test / ubuntu (push) Waiting to run
make test / ubuntu-32bit-static-pcre2 (push) Waiting to run
make test / ubuntu-asan (push) Waiting to run
make test / macos (push) Waiting to run
Rust checks / rustfmt (push) Waiting to run
Rust checks / clippy (push) Waiting to run
Some checks are pending
make test / ubuntu (push) Waiting to run
make test / ubuntu-32bit-static-pcre2 (push) Waiting to run
make test / ubuntu-asan (push) Waiting to run
make test / macos (push) Waiting to run
Rust checks / rustfmt (push) Waiting to run
Rust checks / clippy (push) Waiting to run
This commit is contained in:
parent
abc1a45ea1
commit
84d8655677
|
@ -619,9 +619,15 @@ fn init_curses(vars: &EnvStack) {
|
||||||
// We do not warn for xterm-256color at all, we know that one.
|
// We do not warn for xterm-256color at all, we know that one.
|
||||||
if term != Some("xterm-256color".into()) {
|
if term != Some("xterm-256color".into()) {
|
||||||
if let Some(term) = term {
|
if let Some(term) = term {
|
||||||
FLOG!(warning, wgettext_fmt!("Could not set up terminal for $TERM '%ls'", term));
|
FLOG!(
|
||||||
|
warning,
|
||||||
|
wgettext_fmt!("Could not set up terminal for $TERM '%ls'", term)
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
FLOG!(warning, wgettext!("Could not set up terminal because $TERM is unset."));
|
FLOG!(
|
||||||
|
warning,
|
||||||
|
wgettext!("Could not set up terminal because $TERM is unset.")
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user