Browse Source

New key to tkae note ^N

master
Arun Prakash Jana 6 years ago
parent
commit
31849fd5fb
No known key found for this signature in database GPG Key ID: A75979F35C080412
3 changed files with 3 additions and 2 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      src/nnn.c
  3. +1
    -0
      src/nnn.h

+ 1
- 1
README.md View File

@@ -242,7 +242,7 @@ Press <kbd>?</kbd> in `nnn` to see the list anytime.
MISC
!, ^] Spawn SHELL in dir C Execute entry
R, ^V Run custom script L Lock terminal
^S Run a command N Take note
^S Run a command N, ^N Take note
```

Help & settings, file details, media info and archive listing are shown in the PAGER. Please use the PAGER-specific keys in these screens.


+ 1
- 1
src/nnn.c View File

@@ -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;


+ 1
- 0
src/nnn.h View File

@@ -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 */


Loading…
Cancel
Save