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 20:59:17 +03:00
|
|
|
the scope of the selection.
|
|
|
|
|
|
|
|
*Since: 20220624-141144-bd1b7c5d*
|
|
|
|
|
|
|
|
The mode argument can also be `"Block"` to enable a rectangular block selection.
|
2022-06-25 16:58:10 +03:00
|
|
|
|
|
|
|
```lua
|
2022-07-19 17:54:31 +03:00
|
|
|
local wezterm = require 'wezterm'
|
2022-06-25 16:58:10 +03:00
|
|
|
|
|
|
|
return {
|
|
|
|
mouse_bindings = {
|
|
|
|
{
|
2022-07-19 17:54:31 +03:00
|
|
|
event = { Up = { streak = 1, button = 'Left' } },
|
|
|
|
mods = 'SHIFT',
|
|
|
|
action = wezterm.action.ExtendSelectionToMouseCursor 'Word',
|
2022-06-25 16:58:10 +03:00
|
|
|
},
|
2022-07-19 17:54:31 +03:00
|
|
|
},
|
2022-06-25 16:58:10 +03:00
|
|
|
}
|
|
|
|
```
|
2020-10-10 18:40:14 +03:00
|
|
|
|