commit c3fcefe6429caf2335556f5c38aee9c2223ee3c4 from: Omar Polo date: Wed May 12 12:00:45 2021 UTC cosmetic: don't add a space on : There are two ways (by default) to bring up the execute-extended-command: M-x or :. To be a bit more like vi, don't add a space after :, but do that after M-x. commit - 2ebcb9357057bad2e81da11cc8a6a6743c84d7b7 commit + c3fcefe6429caf2335556f5c38aee9c2223ee3c4 blob - 3e80f5519bc96364bcc6552f5c5560e52fcf2668 blob + 17515f96aa27a6686df61c43656709b708e37d5f --- ui.c +++ ui.c @@ -712,7 +712,9 @@ cmd_execute_extended_command(struct window *window) strlcat(ministate.prompt, "M-", len); strlcat(ministate.prompt, keyname(thiskey.key), len); - strlcat(ministate.prompt, " ", len); + + if (thiskey.meta) + strlcat(ministate.prompt, " ", len); } static void