Merge pull request #237 from Kartonrealista/master
Add 'Ctrl' + '+' as a zoom-in shortcut
This commit is contained in:
commit
0bf777efcc
1 changed files with 2 additions and 1 deletions
|
|
@ -63,7 +63,8 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
|
|||
bind!([Ctrl], Key::Character("0".into()), ZoomReset);
|
||||
bind!([Ctrl], Key::Character("-".into()), ZoomOut);
|
||||
bind!([Ctrl], Key::Character("=".into()), ZoomIn);
|
||||
|
||||
bind!([Ctrl], Key::Character("+".into()), ZoomIn);
|
||||
|
||||
// Ctrl+Arrows and Ctrl+HJKL move between splits
|
||||
bind!([Ctrl, Shift], Key::Named(Named::ArrowLeft), PaneFocusLeft);
|
||||
bind!([Ctrl, Shift], Key::Character("H".into()), PaneFocusLeft);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue