Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-21 | Allow absolute paths returned by fzf in fzcd plugin (#682) | Jan Meischner | |
* Allow absolute paths returned by fzf in fzcd plugin * Fix issue with POSIX syntax * Add descriptive comment * Add comment * Remove description * Add new line at the end of the file Co-authored-by: Jan Meischner <jan.meischner@verimi.com> | |||
2020-07-15 | Fix typo (#679) | Jason | |
2020-07-14 | Prepare for release v3.3 | Arun Prakash Jana | |
2020-07-13 | Update help | Arun Prakash Jana | |
2020-07-13 | Alt+Esc to exit nav-to-type and redraw | Arun Prakash Jana | |
2020-07-09 | Add a note that Esc cancels | Arun Prakash Jana | |
2020-07-09 | Fix #675 | Arun Prakash Jana | |
2020-07-08 | Update preview-tui (#674) | lvgx | |
Co-authored-by: akimdi <akimdi@users.noreply.github.com> | |||
2020-07-07 | Use the term mark instead of pin | Arun Prakash Jana | |
2020-07-07 | Pin dir when visitng target file in find and list | Arun Prakash Jana | |
2020-07-06 | Add quick find (fd) and grep (rg) plugin examples | Arun Prakash Jana | |
2020-07-04 | Remove snprintf() from start-up path | Arun Prakash Jana | |
2020-06-28 | Revert "Simplify check" | Arun Prakash Jana | |
This reverts commit 37e5e6189a10ce0da8df4dbdb64398cf7a02c0bd. | |||
2020-06-28 | Copy the correct length | Arun Prakash Jana | |
2020-06-28 | Minor refactor | Arun Prakash Jana | |
2020-06-27 | Fix build break | Arun Prakash Jana | |
2020-06-27 | Add relative paths support for cp/mv as (#668) | KlzXS | |
2020-06-27 | Fix build break | Arun Prakash Jana | |
2020-06-27 | Pin current path on archive/remote mount | Arun Prakash Jana | |
2020-06-27 | Update docs | Arun Prakash Jana | |
2020-06-25 | Simplify check | Arun Prakash Jana | |
2020-06-24 | Fix check when char is unsigned (#665) | Sijmen J. Mulder | |
If char is unsigned (as on ARM) subtracting a larger number would result in a wrap around, not a negative value. src/nnn.c: In function 'readpipe': src/nnn.c:4325:11: warning: comparison is always false due to limited range of data type [-Wtype-limits] if (ctx < 0 || ctx > CTX_MAX) ^ | |||
2020-06-24 | Always use builtin alloca() (#666) | Sijmen J. Mulder | |
Fixes the build on NetBSD 9 on arm64. GCC expands alloca() to __builtin_alloca() but only in nonstandard mode, e.g. when -std=... is not supplied. In standards mode (with -std=...) alloca() is left undefined by GCC. The C library may define it but it also may not, as on NetBSD on arm64: $ uname -srp NetBSD 9.0 aarch64 $ cat alloca.c #include <stdlib.h> int main() { char *p = alloca(10); } $ gcc alloca.c $ gcc -std=c99 alloca.c alloca.c:(.text+0xc): warning: Warning: reference to the libc supplied alloca(3); this most likely will not work. Please use the compiler provided version of alloca(3), by supplying the appropriate compiler flags (e.g. not -std=c89). ld: alloca.c:(.text+0xc): undefined reference to `alloca' The fix is to either not use standards mode (undesirable) or to explicitly use the builtin, which is what this patch does. This is also sufficient for Solarius/Illumos so that check and include are removed. | |||
2020-06-22 | Add -Wshadow to CFLAGS and fixes | Arun Prakash Jana | |
2020-06-20 | Add plugin bulknew (#662) | KlzXS | |
* Add plugin bulknew * Update documentation * Update dependencies * Add whitespace note | |||
2020-06-19 | Update contributing guideline | Arun Prakash Jana | |
2020-06-19 | Avoid SIGWINCH interruptions of NNN_PIPE IO (#659) | lvgx | |
Fixes #656 | |||
2020-06-18 | Initial CONTRIBUTING.md (#655) | Mario | |
2020-06-16 | Update docs | Arun Prakash Jana | |
2020-06-16 | added support webp format (#652) | akimdi | |
* added support webp format * update nuke plugin with support webp format | |||
2020-06-15 | Option -u to disable current/selection prompt | Arun Prakash Jana | |
2020-06-15 | Clear selection after some operations (see notes) | Arun Prakash Jana | |
Selection is cleared after successful: - file removal - batch rename - link creation However, selection is not cleared after: - archive creation: user may want to delete the files after archiving | |||
2020-06-14 | Update docs | Arun Prakash Jana | |
2020-06-14 | Show '+' in statusbar instead of 's' for selection | Arun Prakash Jana | |
2020-06-14 | Refactor key-val pair parsing | Arun Prakash Jana | |
2020-06-14 | Make once-used function inline | Arun Prakash Jana | |
2020-06-12 | Update docs | Arun Prakash Jana | |
2020-06-11 | Sane tree defaults and viu support (#649) | Mario | |
2020-06-11 | Feature #534: Support hardware cursor sync | Ian R | |
2020-06-11 | Update docs | Arun Prakash Jana | |
2020-06-11 | support imv in imgview and nuke | Arun Prakash Jana | |
2020-06-10 | Use Firefox Send for upload if ffsend is found | Arun Prakash Jana | |
2020-06-10 | Add hx as alternative hex viewer | Arun Prakash Jana | |
2020-06-10 | preview-tui: make scope & pistol run before `file` (#647) | Doron Behar | |
Both Pistol and `scope.sh` are run `file --mimetype` or an equivalent, internally. Thus, for speed, it's better to run them before almost anything else. | |||
2020-06-10 | Pistol support (#646) | Mario | |
2020-06-10 | Kitty splits (#643) | Mario | |
* Easier to browse plugin README.md * Splits are inverted * trying to fix kitty splits * Correctly restores the kitty layout * More clear comments | |||
2020-06-10 | Fixes environmental variables not being passed on preview-tui (#644) | Mario | |
2020-06-09 | Selection mode don't need to be persistent | Arun Prakash Jana | |
2020-06-09 | Plugin run flags don't need to be persistent | Arun Prakash Jana | |
2020-06-09 | Picker mode doesn't need to be persistent | Arun Prakash Jana | |