Add F11 support

This commit is contained in:
liberodark 2025-06-19 06:38:57 +02:00 committed by Jeremy Soller
parent cf9c0c51ae
commit a90e55f1f0
2 changed files with 9 additions and 0 deletions

View file

@ -34,6 +34,7 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
bind!([Shift], Key::Named(Named::Insert), PastePrimary);
bind!([Ctrl, Shift], Key::Character("W".into()), TabClose);
bind!([Ctrl], Key::Character(",".into()), Settings);
bind!([], Key::Named(Named::F11), ToggleFullscreen);
// Ctrl+Alt+D splits horizontally, Ctrl+Alt+R splits vertically, Ctrl+Shift+X maximizes split
//TODO: Adjust bindings as desired by UX