Remove "plus" from named keys

It's not necessary and it's confusing if the canonical version unnecessarily
deviates from the input (we use + for Vi binds).
This commit is contained in:
Johannes Altmanninger
2024-04-12 08:38:22 +02:00
parent 59922d0859
commit bc4897b2b5

View File

@@ -31,7 +31,6 @@ pub(crate) fn function_key(n: u32) -> char {
}
const KEY_NAMES: &[(char, &wstr)] = &[
('+', L!("plus")),
('-', L!("minus")),
(',', L!("comma")),
(Backspace, L!("backspace")),