Skip to content

Commit

Permalink
fix: make the ctrl-[ the sym key to escape key.
Browse files Browse the repository at this point in the history
  • Loading branch information
sakurawald committed Dec 8, 2024
1 parent c44ffde commit bb6a745
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions frontends/sdl2/keyboard.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@
:super super
:shift shift
:sym "Tab"))
((and ctrl (equal sym "["))
(lem:make-key :ctrl nil
:meta meta
:super super
:shift shift
:sym "Escape"))
((and ctrl (equal sym "m"))
(lem:make-key :ctrl nil
:meta meta
Expand Down

0 comments on commit bb6a745

Please sign in to comment.