2021-03-06 22:32:15 +03:00
|
|
|
# StartWindowDrag
|
|
|
|
|
2021-03-14 21:55:12 +03:00
|
|
|
*since: 20210314-114017-04b7cedd*
|
2021-03-06 22:32:15 +03:00
|
|
|
|
|
|
|
Places the window in the drag-to-move state, which means that the window will
|
|
|
|
move to follow your mouse pointer until the mouse button is released.
|
|
|
|
|
|
|
|
By default this is bound to SUPER + left mouse drag, as well as CTRL-SHIFT + left mouse drag.
|
|
|
|
|
|
|
|
```lua
|
2022-06-25 16:58:10 +03:00
|
|
|
local wezterm = require 'wezterm'
|
|
|
|
|
2021-03-06 22:32:15 +03:00
|
|
|
return {
|
|
|
|
mouse_bindings = {
|
|
|
|
{
|
2022-07-19 17:54:31 +03:00
|
|
|
event = { Drag = { streak = 1, button = 'Left' } },
|
|
|
|
mods = 'SUPER',
|
|
|
|
action = wezterm.action.StartWindowDrag,
|
2021-03-06 22:32:15 +03:00
|
|
|
},
|
|
|
|
{
|
2022-07-19 17:54:31 +03:00
|
|
|
event = { Drag = { streak = 1, button = 'Left' } },
|
|
|
|
mods = 'CTRL|SHIFT',
|
|
|
|
action = wezterm.action.StartWindowDrag,
|
2021-03-06 22:32:15 +03:00
|
|
|
},
|
2022-07-19 17:54:31 +03:00
|
|
|
},
|
2021-03-06 22:32:15 +03:00
|
|
|
}
|
|
|
|
```
|