Skip to content

Commit

Permalink
[59_23] Keyboard: Add std = as a keybinding for zoom-in
Browse files Browse the repository at this point in the history
## What
Add `std =` as a keybinding for zoom-in

## Why
`C-=` for zoom in is nice than pressing `C-S-=`.

## How to test your changes?
+ [x] Linux (KDE)
+ [ ] macOS
+ [ ] Windows
  • Loading branch information
da-liii authored Nov 12, 2024
1 parent 201ef3b commit 4595e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TeXmacs/progs/generic/generic-kbd.scm
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,6 @@
("macos F" (toggle-full-screen-mode))
("macos C-f" (toggle-full-screen-edit-mode))

("macos =" (zoom-in (sqrt (sqrt 2.0))))
("macos S-=" (zoom-in (sqrt (sqrt 2.0))))
("macos S-+" (zoom-in (sqrt (sqrt 2.0))))
("macos S--" (zoom-out (sqrt (sqrt 2.0))))
Expand Down Expand Up @@ -807,6 +806,7 @@
("std z" (undo 0))
("std Z" (redo 0))
("std +" (zoom-in (sqrt (sqrt 2.0))))
("std =" (zoom-in (sqrt (sqrt 2.0))))
("std -" (zoom-out (sqrt (sqrt 2.0))))
("std 0" (change-zoom-factor 1.0))

Expand Down

0 comments on commit 4595e25

Please sign in to comment.