diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 2 | ||||
-rw-r--r-- | src/nnn.h | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -2286,7 +2286,7 @@ static bool show_help(char *path) "1MISC\n" "8!, ^] Spawn SHELL in dir C Execute entry\n" "8R, ^V Run custom script L Lock terminal\n" - "b^S Run a command N Take note\n"}; + "b^S Run a command N, ^N Take note\n"}; if (fd == -1) return FALSE; @@ -225,6 +225,7 @@ static struct key bindings[] = { { 'p', SEL_RUNPAGE }, /* Open notes file */ { 'N', SEL_NOTE }, + { CONTROL('N'), SEL_NOTE }, /* Lock screen */ { 'L', SEL_LOCK }, /* Quit a context */ |