diff options
| author | 2019-08-07 19:47:17 +0530 | |
|---|---|---|
| committer | 2019-08-07 19:47:17 +0530 | |
| commit | 8bc71c6e5b06ae3d01da142417dc92340fa91e5e (patch) | |
| tree | 1fdfe6d1f627e5dc6c52406069e6365fe69fbdfa | |
| parent | 26e18ab382ef388a8d3475464a03ed3ba37a68dc (diff) | |
| download | nnn-8bc71c6e5b06ae3d01da142417dc92340fa91e5e.tar.gz | |
Key Lead' to go to first file in dir
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | src/nnn.c | 10 |
2 files changed, 11 insertions, 0 deletions
@@ -323,6 +323,7 @@ The Leader/Lead key provides a powerful multi-functional navigation mechanism. I | <kbd>></kbd>, <kbd>.</kbd> | Go to next active context | | <kbd><</kbd>, <kbd>,</kbd> | Go to previous active context | | key | Go to bookmarked location | +| <kbd>'</kbd> | Go to first file in directory | | <kbd>~</kbd> <kbd>`</kbd> <kbd>@</kbd> <kbd>-</kbd> | Go to HOME, `/`, start, last visited dir | | <kbd>q</kbd> | Quit context | @@ -3669,6 +3669,16 @@ nochange: case '@': presel = fd; goto nochange; + case '\'': + for (r = 0; r < ndents; ++r) { + if (!(dents[r].flags & DIR_OR_LINK_TO_DIR)) { + move_cursor((r) % ndents, 0); + break; + } + } + if (r != ndents) + continue;; + goto nochange; case '>': // fallthrough case '.': // fallthrough case '<': // fallthrough |