From e97eeff187c208a3d5474f3ff5b036d30c52e415 Mon Sep 17 00:00:00 2001 From: ArenaL5 Date: Sun, 22 Mar 2020 01:11:55 +0100 Subject: [PATCH] Label numeric keypad Enter to hotkeys_popup When adding human-readable key names to `lib/awful/hotkeys_popup/widget.lua`, I forgot to add the Enter key in the numeric keypad to the list. Signed-off-by: ArenaL5 --- lib/awful/hotkeys_popup/widget.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/awful/hotkeys_popup/widget.lua b/lib/awful/hotkeys_popup/widget.lua index e8957e3f..0157cd33 100644 --- a/lib/awful/hotkeys_popup/widget.lua +++ b/lib/awful/hotkeys_popup/widget.lua @@ -218,6 +218,7 @@ function widget.new(args) KP_Multiply = "Num*", KP_Subtract = "Num-", KP_Add = "Num+", + KP_Enter = "NumEnter", -- Some "obvious" entries are necessary for the Escape sequence -- and whitespace characters: Escape = "Esc",