diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2018-01-09 14:21:09 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2018-01-09 14:21:09 +0530 |
commit | 34b650aac876e87a08a78e86d10e74c9b9c278f3 (patch) | |
tree | 709097407a303a47d2ae0043fea80fffe90d0703 /README.md | |
parent | 827f7fd662265631b07189c5dd389efb9a3e7c41 (diff) | |
download | nnn-34b650aac876e87a08a78e86d10e74c9b9c278f3.tar.gz |
Remap ^S and ^Q.
The replacement keys are:
^J - toggle du mode
^Y - quit
The change is done because ^S, ^Q keybinds are lost in the following case:
- start nnn
- navigate to a different directory
- spawn a shell
- exit the shell
The issue happens only with the 'special' keybinds like ^S, ^Q, ^Z... which get
their original shell interpretation back.
So we are replacing these 2 keybinds with 2 'non-special' combinations.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -237,7 +237,7 @@ optional arguments: n | Create new ^R | Rename entry s | Toggle sort by size - S, ^S | Toggle du mode + S, ^J | Toggle du mode t | Toggle sort by mtime ! | Spawn SHELL in dir e | Edit entry in EDITOR @@ -249,7 +249,7 @@ optional arguments: ^L | Redraw, clear prompt ? | Help, settings Q | Quit and cd - q, ^Q | Quit + q, ^Y | Quit ``` Help & settings, file details, media info and archive listing are shown in the PAGER. Please use the PAGER-specific keys in these screens. |