Browse Source

Map BS (8) and DEL (127) key codes to SEL_BACK as well

master
Dmitry Yakimenko 6 years ago
parent
commit
66ddbfc5d5
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      nnn.h

+ 2
- 0
nnn.h View File

@@ -102,6 +102,8 @@ static struct assoc assocs[] = {
static struct key bindings[] = { static struct key bindings[] = {
/* Back */ /* Back */
{ KEY_BACKSPACE, SEL_BACK, "", "" }, { KEY_BACKSPACE, SEL_BACK, "", "" },
{ 8 /* BS */, SEL_BACK, "", "" },
{ 127 /* DEL */, SEL_BACK, "", "" },
{ KEY_LEFT, SEL_BACK, "", "" }, { KEY_LEFT, SEL_BACK, "", "" },
{ 'h', SEL_BACK, "", "" }, { 'h', SEL_BACK, "", "" },
{ CONTROL('H'), SEL_BACK, "", "" }, { CONTROL('H'), SEL_BACK, "", "" },


Loading…
Cancel
Save