mirror of
https://github.com/nushell/nushell.git
synced 2025-07-24 13:55:29 +02:00
# 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.
23 lines
729 B
Rust
23 lines
729 B
Rust
mod base;
|
|
mod command_completions;
|
|
mod completer;
|
|
mod completion_common;
|
|
mod completion_options;
|
|
mod custom_completions;
|
|
mod directory_completions;
|
|
mod dotnu_completions;
|
|
mod file_completions;
|
|
mod flag_completions;
|
|
mod variable_completions;
|
|
|
|
pub use base::Completer;
|
|
pub use command_completions::CommandCompletion;
|
|
pub use completer::NuCompleter;
|
|
pub use completion_options::{CompletionOptions, MatchAlgorithm, SortBy};
|
|
pub use custom_completions::CustomCompletion;
|
|
pub use directory_completions::DirectoryCompletion;
|
|
pub use dotnu_completions::DotNuCompletion;
|
|
pub use file_completions::{file_path_completion, matches, FileCompletion};
|
|
pub use flag_completions::FlagCompletion;
|
|
pub use variable_completions::VariableCompletion;
|