From 776de6ec5a0cad839b88d9f6ca7fd79029fdfe3a Mon Sep 17 00:00:00 2001 From: Sander Date: Tue, 18 Feb 2025 18:45:45 +0100 Subject: [PATCH] feat(keymap): move windows without `` --- init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.lua b/init.lua index 22ee9e48..64ff46c0 100644 --- a/init.lua +++ b/init.lua @@ -189,6 +189,12 @@ vim.keymap.set('n', '', '', { desc = 'Move focus to the right win vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) +-- NOTE: Some terminals have coliding keymaps or are not able to send distinct keycodes +-- vim.keymap.set("n", "", "H", { desc = "Move window to the left" }) +-- vim.keymap.set("n", "", "L", { desc = "Move window to the right" }) +-- vim.keymap.set("n", "", "J", { desc = "Move window to the lower" }) +-- vim.keymap.set("n", "", "K", { desc = "Move window to the upper" }) + -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands`