forked from extern/nushell
# Description After the addition of the prefix tab completion support, the older `partial_from` function is left with a single invocation. This PR moves the code inside the function to the point of invocation. # User-Facing Changes No user facing changes. # Tests + Formatting Tests are passing.
126 lines
4.2 KiB
Rust
126 lines
4.2 KiB
Rust
use crate::completions::{file_path_completion, Completer, CompletionOptions, SortBy};
|
|
use nu_protocol::{
|
|
engine::{EngineState, StateWorkingSet},
|
|
Span,
|
|
};
|
|
use reedline::Suggestion;
|
|
use std::{
|
|
path::{is_separator, MAIN_SEPARATOR as SEP, MAIN_SEPARATOR_STR},
|
|
sync::Arc,
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct DotNuCompletion {
|
|
engine_state: Arc<EngineState>,
|
|
}
|
|
|
|
impl DotNuCompletion {
|
|
pub fn new(engine_state: Arc<EngineState>) -> Self {
|
|
Self { engine_state }
|
|
}
|
|
}
|
|
|
|
impl Completer for DotNuCompletion {
|
|
fn fetch(
|
|
&mut self,
|
|
_: &StateWorkingSet,
|
|
prefix: Vec<u8>,
|
|
span: Span,
|
|
offset: usize,
|
|
_: usize,
|
|
options: &CompletionOptions,
|
|
) -> Vec<Suggestion> {
|
|
let prefix_str = String::from_utf8_lossy(&prefix).replace('`', "");
|
|
let mut search_dirs: Vec<String> = vec![];
|
|
|
|
// If prefix_str is only a word we want to search in the current dir
|
|
let (base, partial) = prefix_str
|
|
.rsplit_once(is_separator)
|
|
.unwrap_or((".", &prefix_str));
|
|
let base_dir = base.replace(is_separator, MAIN_SEPARATOR_STR);
|
|
let mut partial = partial.to_string();
|
|
// On windows, this standardizes paths to use \
|
|
let mut is_current_folder = false;
|
|
|
|
// Fetch the lib dirs
|
|
let lib_dirs: Vec<String> =
|
|
if let Some(lib_dirs) = self.engine_state.get_env_var("NU_LIB_DIRS") {
|
|
lib_dirs
|
|
.as_list()
|
|
.into_iter()
|
|
.flat_map(|it| {
|
|
it.iter().map(|x| {
|
|
x.as_path()
|
|
.expect("internal error: failed to convert lib path")
|
|
})
|
|
})
|
|
.map(|it| {
|
|
it.into_os_string()
|
|
.into_string()
|
|
.expect("internal error: failed to convert OS path")
|
|
})
|
|
.collect()
|
|
} else {
|
|
vec![]
|
|
};
|
|
|
|
// Check if the base_dir is a folder
|
|
// rsplit_once removes the separator
|
|
if base_dir != "." {
|
|
// Add the base dir into the directories to be searched
|
|
search_dirs.push(base_dir.clone());
|
|
|
|
// Reset the partial adding the basic dir back
|
|
// in order to make the span replace work properly
|
|
let mut base_dir_partial = base_dir;
|
|
base_dir_partial.push_str(&partial);
|
|
|
|
partial = base_dir_partial;
|
|
} else {
|
|
// Fetch the current folder
|
|
let current_folder = self.engine_state.current_work_dir();
|
|
is_current_folder = true;
|
|
|
|
// Add the current folder and the lib dirs into the
|
|
// directories to be searched
|
|
search_dirs.push(current_folder);
|
|
search_dirs.extend(lib_dirs);
|
|
}
|
|
|
|
// Fetch the files filtering the ones that ends with .nu
|
|
// and transform them into suggestions
|
|
let output: Vec<Suggestion> = search_dirs
|
|
.into_iter()
|
|
.flat_map(|it| {
|
|
file_path_completion(span, &partial, &it, options)
|
|
.into_iter()
|
|
.filter(|it| {
|
|
// Different base dir, so we list the .nu files or folders
|
|
if !is_current_folder {
|
|
it.1.ends_with(".nu") || it.1.ends_with(SEP)
|
|
} else {
|
|
// Lib dirs, so we filter only the .nu files
|
|
it.1.ends_with(".nu")
|
|
}
|
|
})
|
|
.map(move |x| Suggestion {
|
|
value: x.1,
|
|
description: None,
|
|
extra: None,
|
|
span: reedline::Span {
|
|
start: x.0.start - offset,
|
|
end: x.0.end - offset,
|
|
},
|
|
append_whitespace: true,
|
|
})
|
|
})
|
|
.collect();
|
|
|
|
output
|
|
}
|
|
|
|
fn get_sort_by(&self) -> SortBy {
|
|
SortBy::LevenshteinDistance
|
|
}
|
|
}
|