blob: 3528cf3d280d974d919d9ee435507979c1b8a356 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use cli_utils::string_vec;
use crate::systems::comp::context::CompletionContext;
pub fn comp(ctx: CompletionContext) -> Option<Vec<String>> {
if ctx.current_word.starts_with('-') {
return Some(string_vec!["--no-sort", "--no-pretty"]);
}
None
}
|