2022-06-24 20:41:21 +03:00
|
|
|
# `wezterm show-keys`
|
|
|
|
|
2023-03-21 08:01:24 +03:00
|
|
|
{{since('20220624-141144-bd1b7c5d')}}
|
2022-06-24 20:41:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
Prints the complete set of key assignments based on your config file.
|
|
|
|
|
|
|
|
The command shows each key table as well as the set of mouse bindings.
|
|
|
|
|
|
|
|
A truncated example of the output is shown below.
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
Default key table
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
CTRL Tab -> ActivateTabRelative(1)
|
|
|
|
SHIFT | CTRL Tab -> ActivateTabRelative(-1)
|
|
|
|
...
|
|
|
|
|
|
|
|
Key Table: copy_mode
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
Tab -> CopyMode(MoveForwardWord)
|
|
|
|
SHIFT Tab -> CopyMode(MoveBackwardWord)
|
|
|
|
SHIFT $ -> CopyMode(MoveToEndOfLineContent)
|
|
|
|
...
|
|
|
|
|
|
|
|
Key Table: search_mode
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
Enter -> CopyMode(PriorMatch)
|
|
|
|
Escape -> CopyMode(Close)
|
|
|
|
CTRL n -> CopyMode(NextMatch)
|
|
|
|
...
|
|
|
|
|
|
|
|
Mouse
|
|
|
|
-----
|
|
|
|
|
|
|
|
Down { streak: 1, button: Left } -> SelectTextAtMouseCursor(Cell)
|
|
|
|
SHIFT Down { streak: 1, button: Left } -> ExtendSelectionToMouseCursor(None)
|
|
|
|
ALT Down { streak: 1, button: Left } -> SelectTextAtMouseCursor(Block)
|
|
|
|
...
|
|
|
|
```
|
2023-03-22 04:44:26 +03:00
|
|
|
|
|
|
|
## Synopsis
|
|
|
|
|
|
|
|
```console
|
|
|
|
{% include "../examples/cmd-synopsis-wezterm-show-keys--help.txt" %}
|
|
|
|
```
|