feat: add drag window with CTRL + SHIFT + Left Mouse Button

This commit is contained in:
2025-03-25 23:07:44 +03:00
parent b00df259dc
commit d091aa7b67
2 changed files with 14 additions and 4 deletions

View File

@ -47,5 +47,14 @@ return {
mods = "CTRL",
action = wezterm.action.CloseCurrentTab { confirm = false },
},
},
-- Drag window
mouse_bindings = {
{
event = { Drag = { streak = 1, button = 'Left' } },
mods = 'CTRL',
action = wezterm.action.StartWindowDrag,
},
}
}