aboutsummaryrefslogtreecommitdiff
path: root/core/keys.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/keys.lua')
-rw-r--r--core/keys.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/keys.lua b/core/keys.lua
index 5d599482..f1bfb7d1 100644
--- a/core/keys.lua
+++ b/core/keys.lua
@@ -112,7 +112,7 @@ local error = function(e) events.emit(events.ERROR, e) end
-- @name KEYSYMS
M.KEYSYMS = {
-- From Scintilla.h and cdk/curdefs.h.
- [7] = 'esc', [8] = '\b', [9] = '\t', [13] = '\n', [27] = 'esc',
+ [7] = 'esc', [8] = '\b', [9] = '\t', [13] = '\n', [27] = 'esc', [127] = 'del',
-- From curses.h.
[263] = '\b',
-- From Scintilla.h.