diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 9d3a5df97..b6f3c11ff 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -3426,7 +3426,13 @@ macro_rules! mode_info { #[doc = "
key | desc |
---|---|
"] - #[doc = mode_info!(@join $($key),+)] + // TODO switch to this once we use rust 1.54 + // right now it will produce multiple rows + // #[doc = mode_info!(@join $($key),+)] + $( + #[doc = $key] + )+ + // <- #[doc = " | "] #[doc = $desc] #[doc = " |