xtask-todo-lib 0.1.32

Todo workspace library and cargo devshell subcommand
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Tab completion: context parsing (command vs path), command and path candidates.
//! Rustyline Helper (Completer, Hinter, Highlighter, Validator) for command and path completion.

mod candidates;
mod context;
mod helper;

#[cfg(test)]
mod tests;

pub use candidates::{complete_commands, complete_path, list_dir_names_for_completion};
pub use context::{completion_context, CompletionContext, CompletionKind};
pub use helper::{DevShellHelper, NoHint};