1
0

Unbind Meta+F1 for help

This commit is contained in:
Patrick Auernig 2024-10-12 16:20:20 +02:00
parent d680871a34
commit 7b45ac6ae8

View File

@ -18,9 +18,15 @@ local maps = {
{ "i", "jk", "<ESC>l", { desc = "Exit insert mode", silent = true } },
{ { "n", "v" }, "<F1>", "q", { desc = "Record a macro" } },
-- If I need help I'll use the :help command
{ { "i" }, "<F1>", "<NOP>" },
{ { "n", "i" }, "<D-F1>", "<NOP>" },
-- Replace default macro binding
{ { "n", "v" }, "<F1>", "q", { desc = "Record a macro" } },
{ { "n", "v" }, "q", "<NOP>" },
-- No manpages, LSP only
{ { "n" }, "K", "<NOP>" },
{ "v", "J", ":move '>+1<CR>gv=gv", { desc = "Move selected lines down" } },