From 0619ef4e1ef2e43f0bb29d53a3cec21622bda271 Mon Sep 17 00:00:00 2001 From: hoangnh280 Date: Wed, 5 Apr 2023 09:56:14 +0700 Subject: [PATCH] fix(mappings): fix description of j key in x mode --- lua/core/mappings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/mappings.lua b/lua/core/mappings.lua index b6e0140..51b7713 100644 --- a/lua/core/mappings.lua +++ b/lua/core/mappings.lua @@ -57,7 +57,7 @@ M.general = { }, x = { - ["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "move left", opts = { expr = true } }, + ["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "move up", opts = { expr = true } }, ["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "move down", opts = { expr = true } }, -- Don't copy the replaced text after pasting in visual mode -- https://vim.fandom.com/wiki/Replace_a_word_with_yanked_text#Alternative_mapping_for_paste