mirror of
https://github.com/nushell/nushell
synced 2025-01-27 12:25:19 +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 crate::completions::{Completer, CompletionOptions, SemanticSuggestion, SuggestionKind};
|
||||||
use nu_engine::{column::get_columns, eval_variable};
|
use nu_engine::{column::get_columns, eval_variable};
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::{is_env_var_for_drive, Stack, StateWorkingSet},
|
engine::{Stack, StateWorkingSet},
|
||||||
Span, Value,
|
Span, Value,
|
||||||
};
|
};
|
||||||
|
#[cfg(windows)]
|
||||||
|
use nu_protocol::engine::is_env_var_for_drive;
|
||||||
use reedline::Suggestion;
|
use reedline::Suggestion;
|
||||||
use std::str;
|
use std::str;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue