diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-01-23 21:33:43 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-01-23 21:33:43 +0530 |
commit | 80f4f54078a5c8617cd5e9ff1d2503cf9a3e269e (patch) | |
tree | 1aab70561baabbeccb6db59931b1f1917f533dcc /src/nnn.h | |
parent | cd3124605d75a9e2f136c591ce219415817a3a01 (diff) | |
download | nnn-80f4f54078a5c8617cd5e9ff1d2503cf9a3e269e.tar.gz |
Remove shortcuts ^H, ^N, ^P
Diffstat (limited to 'src/nnn.h')
-rw-r--r-- | src/nnn.h | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -106,7 +106,6 @@ static struct key bindings[] = { /* Back */ { KEY_LEFT, SEL_BACK }, { 'h', SEL_BACK }, - { CONTROL('H'), SEL_BACK }, /* Inside or select */ { KEY_ENTER, SEL_GOIN }, { '\r', SEL_GOIN }, @@ -116,11 +115,9 @@ static struct key bindings[] = { /* Next */ { 'j', SEL_NEXT }, { KEY_DOWN, SEL_NEXT }, - { CONTROL('N'), SEL_NEXT }, /* Previous */ { 'k', SEL_PREV }, { KEY_UP, SEL_PREV }, - { CONTROL('P'), SEL_PREV }, /* Page down */ { KEY_NPAGE, SEL_PGDN }, { CONTROL('D'), SEL_PGDN }, |