mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 09:55:42 +02:00
Allow NU_LIBS_DIR and friends to be const (#8538)
This commit is contained in:
@ -6,7 +6,7 @@ use nu_protocol::{
|
||||
PipelineData, Span, Type, Value,
|
||||
};
|
||||
use reedline::Suggestion;
|
||||
use std::sync::Arc;
|
||||
use std::{collections::HashMap, sync::Arc};
|
||||
|
||||
use super::completer::map_value_completions;
|
||||
|
||||
@ -66,7 +66,7 @@ impl Completer for CustomCompletion {
|
||||
],
|
||||
redirect_stdout: true,
|
||||
redirect_stderr: true,
|
||||
parser_info: vec![],
|
||||
parser_info: HashMap::new(),
|
||||
},
|
||||
PipelineData::empty(),
|
||||
);
|
||||
|
Reference in New Issue
Block a user