fix: don't attempt to auto complete .vault list in the REPL; that's the end of the command
This commit is contained in:
@@ -2401,7 +2401,7 @@ impl RequestContext {
|
|||||||
_ => vec![],
|
_ => vec![],
|
||||||
};
|
};
|
||||||
values = candidates.into_iter().map(|v| (v, None)).collect();
|
values = candidates.into_iter().map(|v| (v, None)).collect();
|
||||||
} else if cmd == ".vault" && args.len() == 2 {
|
} else if cmd == ".vault" && args.len() == 2 && args[0] != "list" {
|
||||||
values = self
|
values = self
|
||||||
.app
|
.app
|
||||||
.vault
|
.vault
|
||||||
|
|||||||
Reference in New Issue
Block a user