From 50368bc5c7f21defbfd8ed0cfb5e8e442b396d10 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 18 Feb 2024 02:48:58 +0100 Subject: [PATCH] fix(remap.lua): change keymap for selecting all text from a to to avoid conflicts with other keybindings and improve usability. --- lua/absolute/remap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/absolute/remap.lua b/lua/absolute/remap.lua index 11a5fc7..b85e184 100644 --- a/lua/absolute/remap.lua +++ b/lua/absolute/remap.lua @@ -7,7 +7,7 @@ opts.desc = "Show Keymap" vim.keymap.set("n", "?", "Telescope keymaps", opts) -- toggle file explorer opts.desc = "Select All" -vim.keymap.set("n", "a", "gg0vG$", opts) -- select all +vim.keymap.set("n", "", "gg0vG$", opts) -- select all -- Move selected line / block of text in visual mode up opts.desc = "Move selected line / block of text in visual mode up"