fix: don't attempt to auto complete .vault list in the REPL; that's the end of the command

This commit is contained in:
2026-06-17 12:50:04 -06:00
parent 14969e35fa
commit ee100eef96
+1 -1
View File
@@ -2401,7 +2401,7 @@ impl RequestContext {
_ => vec![],
};
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
.app
.vault