This commit is contained in:
Greg 2026-03-05 13:50:49 +02:00
parent dabcd390ef
commit eb7d49c0ca
2 changed files with 6 additions and 1 deletions

View file

@ -36,7 +36,7 @@ end)
map("n", "<X1Mouse>", "<C-O>", { silent = true, desc = "go back with mouse" }) map("n", "<X1Mouse>", "<C-O>", { silent = true, desc = "go back with mouse" })
map("n", "<X2Mouse>", "<C-I>", { silent = true, desc = "go forward with mouse" }) map("n", "<X2Mouse>", "<C-I>", { silent = true, desc = "go forward with mouse" })
map("n", "<leader>bb", "<cmd>e #<cr>", { desc = "Switch to Other Buffer" }) map("n", "<C-Tab>", "<cmd>e #<cr>", { desc = "Switch to Other Buffer" })
-- Keybindings to make split navigation easier. -- Keybindings to make split navigation easier.
-- Use CTRL+<hjkl> to switch between windows -- Use CTRL+<hjkl> to switch between windows

View file

@ -45,6 +45,11 @@ config.keys = {
mods = "ALT", mods = "ALT",
action = wezterm.action.DisableDefaultAssignment, action = wezterm.action.DisableDefaultAssignment,
}, },
{
key = "Tab",
mods = "CTRL",
action = wezterm.action.DisableDefaultAssignment,
},
} }
-- and finally, return the configuration to wezterm -- and finally, return the configuration to wezterm