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

This commit is contained in:
Timofey Gelazoniya 2025-03-25 23:07:44 +03:00
parent b00df259dc
commit d091aa7b67
No known key found for this signature in database
2 changed files with 14 additions and 4 deletions

View File

@ -206,10 +206,11 @@ tmux # Then press Ctrl+Space, Shift+I
#### WezTerm
| Binding | Action |
| ------------------ | ----------------------- |
| `Ctrl + Shift + Q` | Close WezTerm window |
| `Ctrl + Shift + M` | Minimize WezTerm window |
| Binding | Action |
| ---------------------------------- | ----------------------- |
| `Ctrl + Shift + Q` | Close WezTerm window |
| `Ctrl + Shift + M` | Minimize WezTerm window |
| `Ctrl + Shift + Left Mouse Button` | Drag to move mode |
> Tip: use `fish_add_path /some/path/bin` to add directories to $PATH. See: https://fishshell.com/docs/current/cmds/fish_add_path.html

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,
},
}
}