2021-07-12 07:52:05 +03:00
|
|
|
Mouse bindings are configurable, and there are a number of default assignments
|
|
|
|
described below.
|
2021-02-20 19:38:46 +03:00
|
|
|
|
|
|
|
The assignments are based around a triggering mouse event which may be combined
|
|
|
|
with a set of modifier keys to produce an action.
|
|
|
|
|
2021-07-12 07:52:05 +03:00
|
|
|
By default applications running in the terminal don't respond to the mouse.
|
|
|
|
However, applications can emit escape sequences to request mouse event tracking.
|
|
|
|
When mouse event tracking is enabled, mouse events are NOT matched against
|
|
|
|
the mouse assignments and are instead passed through to the application.
|
|
|
|
|
|
|
|
You can bypass the mouse reporting capture by holding down the `SHIFT` key;
|
|
|
|
that will prevent the event from being passed to the application and allow matching
|
|
|
|
it against your assignments as though the `SHIFT` key were not pressed.
|
|
|
|
|
2021-07-25 18:46:10 +03:00
|
|
|
The [bypass_mouse_reporting_modifiers](lua/config/bypass_mouse_reporting_modifiers.md)
|
2021-07-12 07:52:05 +03:00
|
|
|
option allows you to specify an alternative set of modifiers to use for
|
|
|
|
bypassing mouse reporting capture.
|
|
|
|
|
2021-02-20 19:38:46 +03:00
|
|
|
## Default Mouse Assignments
|
|
|
|
|
|
|
|
In the table below, `Triple Left Down` means that the left mouse button is
|
|
|
|
being triple clicked and that the event matches the downstroke of the third
|
|
|
|
quick consecutive press. `Triple Left Up` matches the subsequent release event
|
|
|
|
of that triple click, so for a triple click both
|
|
|
|
`SelectTextAtMouseCursor="Line"` and `CompleteSelection` will be triggered in
|
|
|
|
that order.
|
|
|
|
|
|
|
|
| Event | Modifiers | Action |
|
|
|
|
| --------- | --- | ------ |
|
|
|
|
| Triple Left Down | `NONE` | `SelectTextAtMouseCursor="Line"` |
|
|
|
|
| Double Left Down | `NONE` | `SelectTextAtMouseCursor="Word"` |
|
|
|
|
| Single Left Down | `NONE` | `SelectTextAtMouseCursor="Cell"` |
|
|
|
|
| Single Left Down | `SHIFT` | `ExtendSelectionToMouseCursor={}` |
|
2022-06-25 00:58:18 +03:00
|
|
|
| Single Left Down | `ALT` | `SelectTextAtMouseCursor="Block"` (*since: 20220624-141144-bd1b7c5d*) |
|
2021-12-23 22:33:51 +03:00
|
|
|
| Single Left Up | `SHIFT` | `CompleteSelectionOrOpenLinkAtMouseCursor="PrimarySelection"` |
|
2021-02-20 19:38:46 +03:00
|
|
|
| Single Left Up | `NONE` | `CompleteSelectionOrOpenLinkAtMouseCursor="PrimarySelection"` |
|
2022-06-25 00:58:18 +03:00
|
|
|
| Single Left Up | `ALT` | `CompleteSelection="PrimarySelection"` (*since: 20220624-141144-bd1b7c5d*) |
|
2021-02-20 19:38:46 +03:00
|
|
|
| Double Left Up | `NONE` | `CompleteSelection="PrimarySelection"` |
|
|
|
|
| Triple Left Up | `NONE` | `CompleteSelection="PrimarySelection"` |
|
|
|
|
| Single Left Drag | `NONE` | `ExtendSelectionToMouseCursor="Cell"` |
|
2022-06-25 00:58:18 +03:00
|
|
|
| Single Left Drag | `ALT` | `ExtendSelectionToMouseCursor="Block"` (*since: 20220624-141144-bd1b7c5d*) |
|
|
|
|
| Single Left Down | `ALT+SHIFT` | `ExtendSelectionToMouseCursor="Block"` (*since: 20220624-141144-bd1b7c5d*) |
|
|
|
|
| Single Left Up | `ALT+SHIFT` | `CompleteSelection="PrimarySelection"` (*since: 20220624-141144-bd1b7c5d*) |
|
2021-02-20 19:38:46 +03:00
|
|
|
| Double Left Drag | `NONE` | `ExtendSelectionToMouseCursor="Word"` |
|
|
|
|
| Triple Left Drag | `NONE` | `ExtendSelectionToMouseCursor="Line"` |
|
|
|
|
| Single Middle Down | `NONE` | `PasteFrom="PrimarySelection"` |
|
2021-03-14 21:55:12 +03:00
|
|
|
| Single Left Drag | `SUPER` | `StartWindowDrag` (*since 20210314-114017-04b7cedd*) |
|
2021-06-30 17:52:01 +03:00
|
|
|
| Single Left Drag | `CTRL+SHIFT` | `StartWindowDrag` (*since 20210314-114017-04b7cedd*) |
|
2021-02-20 19:38:46 +03:00
|
|
|
|
|
|
|
If you don't want the default assignments to be registered, you can
|
|
|
|
disable all of them with this configuration; if you chose to do this,
|
|
|
|
you must explicitly register every binding.
|
|
|
|
|
|
|
|
```lua
|
|
|
|
return {
|
|
|
|
disable_default_mouse_bindings = true,
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Configuring Mouse Assignments
|
|
|
|
|
|
|
|
*since: 20200607-144723-74889cd4*
|
|
|
|
|
|
|
|
You can define mouse actions using the `mouse_bindings` configuration section:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
local wezterm = require 'wezterm';
|
|
|
|
|
|
|
|
return {
|
|
|
|
mouse_bindings = {
|
|
|
|
-- Right click sends "woot" to the terminal
|
|
|
|
{
|
|
|
|
event={Down={streak=1, button="Right"}},
|
|
|
|
mods="NONE",
|
|
|
|
action=wezterm.action{SendString="woot"}
|
|
|
|
},
|
|
|
|
|
|
|
|
-- Change the default click behavior so that it only selects
|
|
|
|
-- text and doesn't open hyperlinks
|
|
|
|
{
|
|
|
|
event={Up={streak=1, button="Left"}},
|
|
|
|
mods="NONE",
|
|
|
|
action=wezterm.action{CompleteSelection="PrimarySelection"},
|
|
|
|
},
|
|
|
|
|
|
|
|
-- and make CTRL-Click open hyperlinks
|
|
|
|
{
|
|
|
|
event={Up={streak=1, button="Left"}},
|
|
|
|
mods="CTRL",
|
|
|
|
action="OpenLinkAtMouseCursor",
|
|
|
|
},
|
2021-07-01 21:54:37 +03:00
|
|
|
-- NOTE that binding only the 'Up' event can give unexpected behaviors.
|
|
|
|
-- Read more below on the gotcha of binding an 'Up' event only.
|
2021-02-20 19:38:46 +03:00
|
|
|
},
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The `action` and `mods` portions are described in more detail in the key assignment
|
|
|
|
information below.
|
|
|
|
|
2021-07-01 21:54:37 +03:00
|
|
|
The `event` portion has three components:
|
2021-02-20 19:38:46 +03:00
|
|
|
|
|
|
|
* Whether it is a `Down`, `Up` or `Drag` event
|
|
|
|
* The number of consecutive clicks within the click threshold (the *click streak*)
|
|
|
|
* The mouse button; `Left`, `Right`, or `Middle`.
|
|
|
|
|
|
|
|
A double click is a `down-up-down` sequence where either the second button down
|
|
|
|
is held for long enough or is released and no subsequent down event occurs
|
|
|
|
within the click threshold. When recognized, it emits a `Down` event with
|
|
|
|
`streak=2`. If the mouse is moved while the button is held, a `Drag` event
|
|
|
|
with `streak=2` is generated. When the mouse button is released an `Up` event
|
|
|
|
with `streak=2` is generated.
|
|
|
|
|
|
|
|
The mouse event recognizer supports an arbitrary click streak, so if
|
|
|
|
you wanted quadruple-click bindings you can specify `streak=4`.
|
|
|
|
|
|
|
|
| Event | Lua Representation |
|
|
|
|
| ----------------- | ------------------- |
|
|
|
|
| Triple Left Down | `event={Down={streak=3, button="Left"}}` |
|
|
|
|
| Double Left Up | `event={Up={streak=2, button="Left"}}` |
|
|
|
|
| Single Left Drag | `event={Drag={streak=1, button="Left"}}` |
|
|
|
|
|
|
|
|
|
2021-07-01 21:54:37 +03:00
|
|
|
# Gotcha on binding an 'Up' event only
|
|
|
|
|
|
|
|
If you only have a mouse bind on the 'Up' event and not on the 'Down' event,
|
|
|
|
the 'Down' event will still be sent to the running program.
|
|
|
|
If that program is tracking mouse inputs (like tmux or vim with mouse support),
|
|
|
|
you may experience _unintuitive behavior_ as the program receives the 'Down'
|
|
|
|
event, but not the 'Up' event (which is bound to something in your config).
|
|
|
|
|
|
|
|
To avoid this, it is recommended to disable the 'Down' event (to ensure it won't
|
|
|
|
be sent to the running program), for example:
|
|
|
|
```lua
|
|
|
|
return {
|
|
|
|
mouse_bindings = {
|
|
|
|
-- Bind 'Up' event of CTRL-Click to open hyperlinks
|
|
|
|
{
|
|
|
|
event={Up={streak=1, button="Left"}},
|
|
|
|
mods="CTRL",
|
|
|
|
action="OpenLinkAtMouseCursor",
|
|
|
|
},
|
|
|
|
-- Disable the 'Down' event of CTRL-Click to avoid weird program behaviors
|
|
|
|
{
|
|
|
|
event={Down={streak=1, button="Left"}},
|
|
|
|
mods="CTRL",
|
|
|
|
action="Nop",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-02-20 19:38:46 +03:00
|
|
|
|
|
|
|
# Available Actions
|
|
|
|
|
|
|
|
See the [`KeyAssignment` reference](lua/keyassignment/index.md) for information
|
|
|
|
on available actions.
|
|
|
|
|
|
|
|
|