value hints in completions

This commit is contained in:
Terts Diepraam
2023-12-08 10:47:00 +01:00
parent 5f84e8b958
commit efe8e323be
6 changed files with 71 additions and 3 deletions
+1
View File
@@ -30,6 +30,7 @@ fn render_value_hint(value: &ValueHint) -> String {
let joined = s.join(", ");
format!(" -a {{ {joined} }}")
}
ValueHint::Unknown => String::new(),
_ => todo!(),
}
}