| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-05-29 | Remove F5 for toggle hidden (misfit) | ||
| 2020-05-29 | Set Escape delay to 0 | ||
| 2020-05-29 | Alt+Esc to clear filter and exit filter prompt | ||
| It's a little annoying that one has to press ^L followed by Esc to go back to the normal view. We cannot reload the directory on Esc because that will break the filter filtered view feature. So we take this route. | |||
| 2020-05-26 | Prepare for release v3.2 | ||
| 2020-05-24 | Fix build break | ||
| 2020-05-24 | Select file if file path is passed | ||
| 2020-05-24 | Fix filterfn not in sync with cfg.regex | ||
| 2020-05-23 | Add -a option to generate a temporary NNN_FIFO (#588) | ||
| * Add -a option to generate a temporary NNN_FIFO * Add documentation for -a option * plugins/README.md: promote the use of -a This obsoletes the global FIFO unlink trick, so I remove mentions of it. @jarun update: Polish -a | |||
| 2020-05-20 | Fix build break | ||
| 2020-05-20 | Fix #582 | ||
| 2020-05-19 | Notify FIFO readers on exit (if any) (#581) | ||
| This allows to close preview windows opened just before exiting nnn. | |||
| 2020-05-19 | Fix regression from commit 2200a1c | ||
| 2020-05-19 | Fix build break | ||
| 2020-05-18 | Option -P: specify plugin key to run on start | ||
| 2020-05-17 | Take to target on Right/l on symlink in list dir | ||
| 2020-05-16 | Fix #575 | ||
| 2020-05-14 | Fix #571 | ||
| 2020-05-13 | Allow launching plugins with Alt + plugin's key (#569) | ||
| * Allow launching plugins with Alt + plugin's key * Fix Alt key in filter/prompts modes * Fix handling Alt key in nextsel() In filter mode: run the associated plugin. In prompt mode: just throw out the Alt+key input. In nextsel(): differentiate Alt+key and Esc | |||
| 2020-05-12 | Skip printing and erasing | ||
| 2020-05-10 | Do not leak wfd | ||
| 2020-05-10 | Simplify cd | ||
| 2020-05-10 | Fix #565: chdir when dir is changed | ||
| 2020-05-10 | Fix #564: Option -l: number of lines to move on mouse scroll | ||
| 2020-05-10 | Remove blocking pipe open in child | ||
| 2020-05-10 | Use standard exit status everywhere | ||
| 2020-05-10 | Use exit status | ||
| 2020-05-10 | Fix reading from pipe when running plugin | ||
| 2020-05-09 | Increase pipe capacity | ||
| 2020-05-06 | Ignore -S when start dir is specified | ||
| 2020-05-06 | Ignore false lint issue | ||
| 2020-05-06 | Fix no preview update when dir changed with same entry number hovered | ||
| 2020-05-06 | Fix broken dir read from pipe | ||
| 2020-05-06 | Drop fzy support | ||
| 2020-05-06 | Prevent open FIFO prom leaking to subprocess | ||
| This fix previews window staying open after nnn exits, because they inherited open FIFO (in write mode) from parent nnn process, and never close it. | |||
| 2020-05-05 | Fix double free when starting in list mode | ||
| 2020-05-05 | Double click only works on same item (#555) | ||
| This patch disables accidental triggering of double clicking when you are just single clicking on multiple objects fast. | |||
| 2020-05-05 | SEL_FIRST now displays the correct message (#556) | ||
| A bit scary when you get prompted to remove a file but you wanted to select a file. I also made sure all strings are correctly ordered. | |||
| 2020-05-05 | Fix context range check | ||
| 2020-05-04 | Add an option to print hovered files to a FIFO (#548) | ||
| * Add an option to print hovered files to a FIFO This adds an env variable, `NNN_FIFO`, that can be set to a path that `nnn` will open/create as a FIFO, and where every hovered file's path is printed. This allows creating external perview/quick open plugins, ... It can be compiled out with the make variable `O_NOFIFO`. * Check filename ptr instead of full path (for FIFO) * Add documentation to use NNN_FIFO in plugins * Fix path sent to FIFO in empty dirs | |||
| 2020-05-04 | Use const type | ||
| 2020-05-04 | Refactor move_cursor() | ||
| 2020-05-04 | Fix #550 | ||
| 2020-05-04 | Add is_prefix(), block empty files completely | ||
| 2020-05-03 | Context code '+' to create context smartly | ||
| 2020-05-03 | Decouple listpath and initpath | ||
| 2020-05-03 | Show messages appropriately | ||
| 2020-05-03 | Plugin mimelist: support reading file list from (cmd as) plugin | ||
| 2020-05-03 | browse: fix nnn -e (#549) | ||
| The current code will start editor if the mime doesn't start with "text/". But, we want the opposite. Simplify the check by using `strncmp` instead. We may improve by writing a helper: `start_withs` in the future. This change also cleans -Wstrict-aliasing on Ubuntu 16.04 LTS | |||
| 2020-05-03 | Simplify unescape() in no locale mode | ||
| 2020-05-02 | Dim file details in detail mode | ||