mirror of
https://github.com/nushell/nushell
synced 2025-01-12 21:29:07 +00:00
Adjust import condition fo is_env_var_for_drive.
This commit is contained in:
parent
709b3afd93
commit
25a2a7a0f9
1 changed files with 3 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
|||
use crate::completions::{Completer, CompletionOptions, SemanticSuggestion, SuggestionKind};
|
||||
use nu_engine::{column::get_columns, eval_variable};
|
||||
use nu_protocol::{
|
||||
engine::{is_env_var_for_drive, Stack, StateWorkingSet},
|
||||
engine::{Stack, StateWorkingSet},
|
||||
Span, Value,
|
||||
};
|
||||
#[cfg(windows)]
|
||||
use nu_protocol::engine::is_env_var_for_drive;
|
||||
use reedline::Suggestion;
|
||||
use std::str;
|
||||
|
||||
|
|
Loading…
Reference in a new issue