mirror of
https://github.com/xzeldon/dotfiles-wsl2.git
synced 2025-04-04 10:07:11 +03:00
feat: add drag window with CTRL + SHIFT + Left Mouse Button
This commit is contained in:
parent
b00df259dc
commit
d091aa7b67
@ -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
|
||||
|
||||
|
@ -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,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user