Skip to main content

xtask_todo_lib/devshell/completion/
mod.rs

1//! Tab completion: context parsing (command vs path), command and path candidates.
2//! Rustyline Helper (Completer, Hinter, Highlighter, Validator) for command and path completion.
3
4mod candidates;
5mod context;
6mod helper;
7
8#[cfg(test)]
9mod tests;
10
11pub use candidates::{complete_commands, complete_path, list_dir_names_for_completion};
12pub use context::{completion_context, CompletionContext, CompletionKind};
13pub use helper::{DevShellHelper, NoHint};