chore(remap.lua): update keymap description from "Toggle File Explorer" to "Show Cheatsheet" to accurately reflect the functionality

chore(remap.lua): update keymap command from "<cmd>NvimTreeToggle<CR>" to "<cmd>Cheatsheet<CR>" to match the updated functionality
chore(remap.lua): update description for moving selected line/block of text in visual mode up
This commit is contained in:
David Ibia
2024-01-24 15:54:44 +01:00
parent 707bc2a204
commit 5cceac51e0

View File

@@ -1,7 +1,7 @@
local opts = { noremap = true, silent = true }
opts.desc = "Toggle File Explorer"
vim.keymap.set("n", "<leader>\\", "<cmd>NvimTreeToggle<CR>", opts) -- toggle file explorer
opts.desc = "Show Cheatsheet"
vim.keymap.set("n", "<leader>\\", "<cmd>Cheatsheet<CR>", opts) -- toggle file explorer
-- Move selected line / block of text in visual mode up
opts.desc = "Move selected line / block of text in visual mode up"