mirror of
https://github.com/wez/wezterm.git
synced 2024-12-27 15:37:29 +03:00
26 lines
565 B
Markdown
26 lines
565 B
Markdown
|
# StartWindowDrag
|
||
|
|
||
|
*since: nightly builds only*
|
||
|
|
||
|
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
|
||
|
return {
|
||
|
mouse_bindings = {
|
||
|
{
|
||
|
event={Drag={streak=1, button="Left"}},
|
||
|
mods="SUPER",
|
||
|
action="StartWindowDrag"
|
||
|
},
|
||
|
{
|
||
|
event={Drag={streak=1, button="Left"}},
|
||
|
mods="CTRL|SHIFT",
|
||
|
action="StartWindowDrag"
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
```
|