From a6f52197d0581a94aa8f71778044829cb6191b45 Mon Sep 17 00:00:00 2001 From: Victor Gridnevsky Date: Tue, 2 Jun 2020 13:26:16 +0300 Subject: [PATCH] Fixes keypad enter issue (#131) --- data/core/keymap.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/data/core/keymap.lua b/data/core/keymap.lua index 19c2fdd..4d48ed4 100644 --- a/data/core/keymap.lua +++ b/data/core/keymap.lua @@ -139,6 +139,7 @@ keymap.add { ["ctrl+delete"] = "doc:delete-to-next-word-end", ["ctrl+shift+delete"] = "doc:delete-to-next-word-end", ["return"] = { "command:submit", "doc:newline" }, + ["keypad enter"] = { "command:submit", "doc:newline" }, ["ctrl+return"] = "doc:newline-below", ["ctrl+shift+return"] = "doc:newline-above", ["ctrl+j"] = "doc:join-lines",