mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-22 01:18:36 +03:00
Merge 4a8ff6129583465c8e8d3bf412682a3492aed9ab into 17ba0252e831457418da1b5c26ce16bdf83f0e5c
This commit is contained in:
@ -208,6 +208,7 @@ typedef enum {
|
||||
GHOSTTY_KEY_F23,
|
||||
GHOSTTY_KEY_F24,
|
||||
GHOSTTY_KEY_F25,
|
||||
GHOSTTY_KEY_CONTEXT_MENU,
|
||||
|
||||
// keypad
|
||||
GHOSTTY_KEY_KP_0,
|
||||
|
@ -357,6 +357,7 @@ pub const Key = enum(c_int) {
|
||||
f23,
|
||||
f24,
|
||||
f25,
|
||||
context_menu,
|
||||
|
||||
// keypad
|
||||
kp_0,
|
||||
@ -567,6 +568,7 @@ pub const Key = enum(c_int) {
|
||||
.backspace => cimgui.c.ImGuiKey_Backspace,
|
||||
.print_screen => cimgui.c.ImGuiKey_PrintScreen,
|
||||
.pause => cimgui.c.ImGuiKey_Pause,
|
||||
.context_menu => cimgui.c.ImGuiKey_Menu,
|
||||
|
||||
.f1 => cimgui.c.ImGuiKey_F1,
|
||||
.f2 => cimgui.c.ImGuiKey_F2,
|
||||
|
@ -161,6 +161,7 @@ const code_to_key = code_to_key: {
|
||||
.{ "ShiftRight", .right_shift },
|
||||
.{ "AltRight", .right_alt },
|
||||
.{ "MetaRight", .right_super },
|
||||
.{ "ContextMenu", .context_menu },
|
||||
});
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user