summaryrefslogtreecommitdiffstats
path: root/src/config/keymap/keymapping.rs
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2023-08-12 16:28:22 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2023-08-12 16:28:22 -0400
commit82e231ac004e1f25f0a447bc601e5e3a10dca4d2 (patch)
tree6f646e653189d81db0284592a3a07bea5e632d08 /src/config/keymap/keymapping.rs
parente6f0d5ce01a296715d0d52755a71068a88a8bf1f (diff)
show description in help menu as well
Diffstat (limited to 'src/config/keymap/keymapping.rs')
-rw-r--r--src/config/keymap/keymapping.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/keymap/keymapping.rs b/src/config/keymap/keymapping.rs
index 6bccc2a..0b3e122 100644
--- a/src/config/keymap/keymapping.rs
+++ b/src/config/keymap/keymapping.rs
@@ -141,7 +141,7 @@ fn insert_keycommand(
Entry::Occupied(_) => return Err(KeymapError::Conflict),
Entry::Vacant(entry) => entry.insert(CommandKeybind::SimpleKeybind {
command: keycommand,
- description: description,
+ description,
}),
};
return Ok(());