1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-10 15:04:32 +03:00

keys: CMD-Q for QuitApplication is now a default on macos

This commit is contained in:
Wez Furlong 2021-03-22 11:43:53 -07:00
parent 22522dc39e
commit b27e4ce2b2
2 changed files with 5 additions and 1 deletions

View File

@ -438,7 +438,10 @@ impl InputMap {
);
#[cfg(target_os = "macos")]
k!([Modifiers::SUPER, KeyCode::Char('h'), HideApplication],);
k!(
[Modifiers::SUPER, KeyCode::Char('h'), HideApplication],
[Modifiers::SUPER, KeyCode::Char('q'), QuitApplication],
);
}
if !config.disable_default_mouse_bindings {

View File

@ -21,6 +21,7 @@ brief notes about them may accumulate here.
* Fixed: font fallback on macOS returns unresolvable `.AppleSymbolsFB` rather than `Apple Symbols`, leading to slowdowns when rendering symbols [#506](https://github.com/wez/wezterm/issues/506)
* Fixed: laggy repaints for large windows particularly on Windows, but applicable to all systems. Tuned and triple-buffered vertex buffer updates. [#546](https://github.com/wez/wezterm/issues/546)
* Changed: [allow_square_glyphs_to_overflow_width](config/lua/config/allow_square_glyphs_to_overflow_width.md) now defaults to `WhenFollowedBySpace` and applies to more symbol glyphs. [#565](https://github.com/wez/wezterm/issues/565)
* Changed: macOS: `CMD-Q` is now bound by default to [QuitApplication](config/lua/keyassignment/QuitApplication.md)
### 20210314-114017-04b7cedd