From a8b2b4e85ab241e20ce8f55d4c871a8653d435f7 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Tue, 30 Oct 2012 10:30:53 -0400 Subject: Pass "Escape" key to Scintilla correctly in ncurses. --- core/keys.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/keys.lua') 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] -- cgit v1.2.3