mirror of
https://github.com/wez/wezterm.git
synced 2024-12-26 23:04:49 +03:00
e0ea0f46a8
refs: https://github.com/wez/wezterm/pull/2273 refs: https://github.com/wez/wezterm/issues/2253
28 lines
666 B
Markdown
28 lines
666 B
Markdown
# StartWindowDrag
|
|
|
|
*since: 20210314-114017-04b7cedd*
|
|
|
|
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
|
|
local wezterm = require 'wezterm'
|
|
|
|
return {
|
|
mouse_bindings = {
|
|
{
|
|
event = { Drag = { streak = 1, button = 'Left' } },
|
|
mods = 'SUPER',
|
|
action = wezterm.action.StartWindowDrag,
|
|
},
|
|
{
|
|
event = { Drag = { streak = 1, button = 'Left' } },
|
|
mods = 'CTRL|SHIFT',
|
|
action = wezterm.action.StartWindowDrag,
|
|
},
|
|
},
|
|
}
|
|
```
|