From 68c9bdd14d6637ca517ed2d1fc9aeb9be4cfde88 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Wed, 12 Oct 2022 16:02:10 +0200 Subject: [PATCH] Fix some commands not showing names in palette (#4223) --- helix-term/src/commands.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 88d4523e34ef..1353b87debd0 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2466,11 +2466,11 @@ impl ui::menu::Item for MappableCommand { match self { MappableCommand::Typable { doc, name, .. } => match keymap.get(name as &String) { Some(bindings) => format!("{} ({}) [{}]", doc, fmt_binding(bindings), name).into(), - None => doc.as_str().into(), + None => format!("{} [{}]", doc, name).into(), }, MappableCommand::Static { doc, name, .. } => match keymap.get(*name) { Some(bindings) => format!("{} ({}) [{}]", doc, fmt_binding(bindings), name).into(), - None => (*doc).into(), + None => format!("{} [{}]", doc, name).into(), }, } }