aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshadmansaleh <13149513+shadmansaleh@users.noreply.github.com>2022-02-16 12:22:15 +0600
committershadmansaleh <13149513+shadmansaleh@users.noreply.github.com>2022-02-16 13:12:46 +0600
commit07a98b1a75b8c4995ecf8b0e947a1909d91a3d51 (patch)
tree78b56dae59ed462a7caddbe3a71d1f416c0387ff
parentf5518b78c843e4b187bd246d31bb7fde2925139e (diff)
downloadrneovim-07a98b1a75b8c4995ecf8b0e947a1909d91a3d51.tar.gz
rneovim-07a98b1a75b8c4995ecf8b0e947a1909d91a3d51.tar.bz2
rneovim-07a98b1a75b8c4995ecf8b0e947a1909d91a3d51.zip
fix: <Nop> not shown in :map commands
-rw-r--r--src/nvim/getchar.c2
-rw-r--r--test/functional/api/keymap_spec.lua5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c
index 217477246e..cc653bb4e9 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -3483,7 +3483,7 @@ static void showmap(mapblock_T *mp, bool local)
char msg[100];
snprintf(msg, sizeof(msg), "<Lua function %d>", mp->m_luaref);
msg_puts_attr(msg, HL_ATTR(HLF_8));
- } else if (mp->m_str == NULL) {
+ } else if (mp->m_str[0] == NUL) {
msg_puts_attr("<Nop>", HL_ATTR(HLF_8));
} else {
// Remove escaping of K_SPECIAL, because "m_str" is in a format to be used
diff --git a/test/functional/api/keymap_spec.lua b/test/functional/api/keymap_spec.lua
index 450a76ddac..06b699193a 100644
--- a/test/functional/api/keymap_spec.lua
+++ b/test/functional/api/keymap_spec.lua
@@ -1037,4 +1037,9 @@ describe('nvim_buf_set_keymap, nvim_buf_del_keymap', function()
eq(1, exec_lua[[return GlobalCount]])
eq('\nNo mapping found', helpers.exec_capture('nmap asdf'))
end)
+
+ it ('shows <nop> as map rhs', function()
+ meths.set_keymap('n', 'asdf', '<nop>', {})
+ eq('\nn asdf <Nop>', helpers.exec_capture('nmap asdf'))
+ end)
end)