Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | ||
2020-04-27 | Use mem* function | ||
2020-04-26 | Show error at source | ||
2020-04-26 | Fix #537 | ||
2020-04-26 | Fix buffer cleanup | ||
2020-04-26 | Fix buffer cleanup | ||
2020-04-26 | Use memrchr if available | ||
2020-04-25 | Resolve path in list mode | ||
2020-04-25 | Minor refactor | ||
2020-04-25 | Silently ignore invalid paths (documented) | ||
2020-04-25 | Fix #532: support picker and list modes together | ||
2020-04-24 | Fix return and show error | ||
2020-04-24 | Fix picker and list mode conflict (#533) | ||
* Fix picker and list mode conflict * Comment the change | |||
2020-04-24 | NNN_SEL: custom selection file | ||
2020-04-24 | Bookmark key get priority over session | ||
2020-04-19 | Do a complete erase | ||
2020-04-18 | Fix listing files directly under / | ||
2020-04-18 | Remove hacky single path handling | ||
2020-04-18 | Fix #520: minimal erasure | ||
2020-04-18 | Fix #526: persistent session | ||
2020-04-17 | Fix #523: handle NNN_PIPE (#525) | ||
Co-authored-by: Todd Yamakawa <todd.yamakawa@arm.com> | |||
2020-04-17 | Save offset in key-val pairs | ||
2020-04-17 | Fix #523: create NNN_PIPE early | ||
2020-04-16 | Experimental: guards to reduce repeat screen redraws | ||
2020-04-16 | Go to first file or next match | ||
2020-04-16 | Env var NNN_LOCKER | ||
2020-04-15 | Fix #520 | ||
2020-04-15 | Fix build break | ||
2020-04-15 | One-pass key-val pair parsing for bms and plugs | ||
2020-04-15 | Show entry even if no permission | ||
2020-04-15 | Optimized xstrlen(), xstrdup() | ||