mirror of
https://github.com/notohh/rustlings.git
synced 2024-12-17 22:58:08 -05:00
Use the correct environment variable
This commit is contained in:
parent
ee25a7d458
commit
f22700a4ec
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ use crossterm::{
|
|||
};
|
||||
|
||||
thread_local! {
|
||||
static VS_CODE: Cell<bool> = Cell::new(env::var_os("TERM").is_some_and(|v| v == "vscode"));
|
||||
static VS_CODE: Cell<bool> = Cell::new(env::var_os("TERM_PROGRAM").is_some_and(|v| v == "vscode"));
|
||||
}
|
||||
|
||||
/// Terminal progress bar to be used when not using Ratataui.
|
||||
|
|
Loading…
Reference in a new issue