2020-10-10 18:40:14 +03:00
|
|
|
# ExtendSelectionToMouseCursor
|
|
|
|
|
|
|
|
Extends the current text selection to the current mouse cursor position.
|
|
|
|
The mode argument can be one of `Cell`, `Word` or `Line` to control
|
2022-06-25 16:58:10 +03:00
|
|
|
the scope of the selection:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
local wezterm = require 'wezterm'
|
|
|
|
|
|
|
|
return {
|
|
|
|
mouse_bindings = {
|
|
|
|
{
|
|
|
|
event={Up={streak=1, button="Left"}},
|
|
|
|
mods="SHIFT",
|
|
|
|
action=wezterm.action.ExtendSelectionToMouseCursor("Word"),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
2020-10-10 18:40:14 +03:00
|
|
|
|
|
|
|
It is also possible to leave the mode unspecified like this:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
return {
|
|
|
|
mouse_bindings = {
|
|
|
|
{
|
|
|
|
event={Up={streak=1, button="Left"}},
|
|
|
|
mods="SHIFT",
|
|
|
|
-- Note that there is no `wezterm.action` here
|
|
|
|
action={ExtendSelectionToMouseCursor={}},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
when unspecified, wezterm will use a default mode which at the time
|
|
|
|
of writing is `Cell`, but in a future release may be context sensitive
|
|
|
|
based on recent actions.
|
|
|
|
|
2022-06-25 00:58:18 +03:00
|
|
|
*Since: 20220624-141144-bd1b7c5d*
|
2020-10-10 18:40:14 +03:00
|
|
|
|
2022-05-06 06:49:22 +03:00
|
|
|
The mode argument can also be `"Block"` to enable a rectangular block selection.
|