mirror of
https://github.com/wez/wezterm.git
synced 2024-12-22 12:51:31 +03:00
launcher: allow CTRL-G to cancel
refs: https://github.com/wez/wezterm/issues/1977
This commit is contained in:
parent
64921bf8a1
commit
97f0bd16f2
@ -30,6 +30,7 @@ As features stabilize some brief notes about them will accumulate here.
|
||||
* Copy Mode: key assignments are [now configurable](copymode.md#configurable-key-assignments) [#993](https://github.com/wez/wezterm/issues/993)
|
||||
* Search Mode: key assignments are [now configurable](scrollback.md#configurable-key-assignments) [#993](https://github.com/wez/wezterm/issues/993)
|
||||
* Copy Mode and Search Mode can be toggled and remember search results and cursor positioning, making it easier to locate and select text without using the mouse [#1592](https://github.com/wez/wezterm/issues/1592)
|
||||
* In the Launcher Menu, you may now use `CTRL-G` to cancel/exit the launcher [#1977](https://github.com/wez/wezterm/issues/1977)
|
||||
|
||||
#### Updated
|
||||
* Bundled harfbuzz to 4.2.1
|
||||
|
@ -495,6 +495,10 @@ impl LauncherState {
|
||||
self.move_down();
|
||||
}
|
||||
InputEvent::Key(KeyEvent {
|
||||
key: KeyCode::Char('G'),
|
||||
modifiers: Modifiers::CTRL,
|
||||
})
|
||||
| InputEvent::Key(KeyEvent {
|
||||
key: KeyCode::Escape,
|
||||
..
|
||||
}) => {
|
||||
|
Loading…
Reference in New Issue
Block a user