aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/keys.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/keys.lua b/core/keys.lua
index 6d5efa93..e3ed5d73 100644
--- a/core/keys.lua
+++ b/core/keys.lua
@@ -224,7 +224,7 @@ local function keypress(code, shift, control, alt, meta)
local key
--print(code, M.KEYSYMS[code], shift, control, alt, meta)
if code < 256 then
- key = string_char(code)
+ key = (not NCURSES or code ~= 7) and string_char(code) or 'esc'
shift = shift and code < 32 -- for printable characters, key is upper case
else
key = M.KEYSYMS[code]