This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
forked from kovidgoyal/kitty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Compat with Ctrl while on other keyboard layouts
When using a different layout other than qwerty some Ctrl commands may be interpreted as the hardware key it is usually tied to. This is worked by working on "key" and "char" callback on glfw, where "key" is the hardware key and "char" is the layout-translated actual key. This key can be gathered by using (taken from glfw tests/events.c) ```c glfwGetKeyName(key, scancode) ```
- Loading branch information
Showing
3 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters