1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-26 14:54:16 +03:00

launcher: allow ctrl-[ to close launcher menu

refs: https://github.com/wez/wezterm/issues/4722
This commit is contained in:
Wez Furlong 2024-01-27 09:01:33 -07:00
parent 178f35a496
commit 2a8bdfa603
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
2 changed files with 2 additions and 1 deletions

View File

@ -118,6 +118,7 @@ As features stabilize some brief notes about them will accumulate here.
[freetype_render_target](config/lua/config/freetype_render_target.md) can now
be set to `VerticalLcd` for vertically decimated LCD displays. Thanks to
@xiaopengli89! #4426
* Pressing `CTRL-[` in the launcher menu will close it. #4722
#### Fixed
* Command Palette was using now-invalid Nerd Font 2.0 symbols for macOS

View File

@ -509,7 +509,7 @@ impl LauncherState {
self.update_filter();
}
InputEvent::Key(KeyEvent {
key: KeyCode::Char('G'),
key: KeyCode::Char('G') | KeyCode::Char('['),
modifiers: Modifiers::CTRL,
})
| InputEvent::Key(KeyEvent {