blob: 358f0653e534688dcd68256f0d9f1966def68daa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! `clap`-native completion system
//!
//! See [`complete()`]
mod candidate;
mod complete;
mod custom;
pub use candidate::CompletionCandidate;
pub use complete::complete;
pub use custom::ArgValueCandidates;
pub use custom::ArgValueCompleter;
pub use custom::PathCompleter;
pub use custom::SubcommandCandidates;
pub use custom::ValueCandidates;
pub use custom::ValueCompleter;
|