The only issue with noice is hard-coded file associations. There is no config file (better performance and simpler to maintain) and one has to modify the source to change associations (see [how to change file associations](#change-file-associations)). nnn solves the problem by adding the flexibility of using the default desktop opener at runtime. There are several other improvements too (see [fork-toppings](#fork-toppings)).
+You can try
+
+ alias n='nnn -d'
+and see how nnn simplifies those long desktop sessions.
+
Have fun with it! PRs are welcome. Check out [#1](https://github.com/jarun/nnn/issues/1).
### Why fork?
| `Down`, `j`, `^N` | Next entry |
| `PgUp`, `^U` | Scroll half page up |
| `PgDn`, `^D` | Scroll half page down |
-| `Home`, `^`, `^A` | Jump to first dir entry |
-| `End`, `$`, `^E` | Jump to last dir entry |
+| `Home`, `g`, `^`, `^A` | Jump to first entry |
+| `End`, `G`, `$`, `^E` | Jump to last entry |
| `Right`, `Enter`, `l`, `^M` | Open file or enter dir |
| `Left`, `Backspace`, `h`, `^H` | Go to parent dir |
| `~` | Jump to HOME dir |
{ CONTROL('U'), SEL_PGUP, "", "" },
/* Home */
{ KEY_HOME, SEL_HOME, "", "" },
+ { 'g', SEL_HOME, "", "" },
{ CONTROL('A'), SEL_HOME, "", "" },
{ '^', SEL_HOME, "", "" },
/* End */
{ KEY_END, SEL_END, "", "" },
+ { 'G', SEL_END, "", "" },
{ CONTROL('E'), SEL_END, "", "" },
{ '$', SEL_END, "", "" },
/* Change dir */
Scroll up half a page
.It Ic [PgDn], ^D
Scroll down half a page
-.It Ic [Home], ^, ^A
+.It Ic [Home], g, ^, ^A
Move to the first entry
-.It Ic [End], $, ^E
+.It Ic [End], G, $, ^E
Move to the last entry
.It Ic [Right], [Enter], l, ^M
Open file or enter directory
[Down], j, ^N Next entry\n\
[PgUp], ^U Scroll half page up\n\
[PgDn], ^D Scroll half page down\n\
- [Home], ^, ^A Jump to first dir entry\n\
- [End], $, ^E Jump to last dir entry\n\
+ [Home], g, ^, ^A Jump to first entry\n\
+ [End], G, $, ^E Jump to last entry\n\
[Right], [Enter], l, ^M Open file or enter dir\n\
[Left], [Backspace], h, ^H Go to parent dir\n\
~ Jump to HOME dir\n\