From cff2d01e52d12722a864c98e8e458d183fd7932f Mon Sep 17 00:00:00 2001 From: Sander Date: Mon, 24 Mar 2025 20:34:57 +0100 Subject: feat(keymap): move windows without `` (#1368) --- nvim/init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nvim/init.lua b/nvim/init.lua index a39cd0e..0c8d08a 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -107,6 +107,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` -- cgit v1.2.3