aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-07-21Allow absolute paths returned by fzf in fzcd plugin (#682)Gravatar 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-15Fix typo (#679)Gravatar Jason
2020-07-14Prepare for release v3.3Gravatar Arun Prakash Jana
2020-07-13Update helpGravatar Arun Prakash Jana
2020-07-13Alt+Esc to exit nav-to-type and redrawGravatar Arun Prakash Jana
2020-07-09Add a note that Esc cancelsGravatar Arun Prakash Jana
2020-07-09Fix #675Gravatar Arun Prakash Jana
2020-07-08Update preview-tui (#674)Gravatar lvgx
Co-authored-by: akimdi <akimdi@users.noreply.github.com>
2020-07-07Use the term mark instead of pinGravatar Arun Prakash Jana
2020-07-07Pin dir when visitng target file in find and listGravatar Arun Prakash Jana
2020-07-06Add quick find (fd) and grep (rg) plugin examplesGravatar Arun Prakash Jana
2020-07-04Remove snprintf() from start-up pathGravatar Arun Prakash Jana
2020-06-28Revert "Simplify check"Gravatar Arun Prakash Jana
This reverts commit 37e5e6189a10ce0da8df4dbdb64398cf7a02c0bd.
2020-06-28Copy the correct lengthGravatar Arun Prakash Jana
2020-06-28Minor refactorGravatar Arun Prakash Jana
2020-06-27Fix build breakGravatar Arun Prakash Jana
2020-06-27Add relative paths support for cp/mv as (#668)Gravatar KlzXS
2020-06-27Fix build breakGravatar Arun Prakash Jana
2020-06-27Pin current path on archive/remote mountGravatar Arun Prakash Jana
2020-06-27Update docsGravatar Arun Prakash Jana
2020-06-25Simplify checkGravatar Arun Prakash Jana
2020-06-24Fix check when char is unsigned (#665)Gravatar 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-24Always use builtin alloca() (#666)Gravatar 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-22Add -Wshadow to CFLAGS and fixesGravatar Arun Prakash Jana
2020-06-20Add plugin bulknew (#662)Gravatar KlzXS
* Add plugin bulknew * Update documentation * Update dependencies * Add whitespace note
2020-06-19Update contributing guidelineGravatar Arun Prakash Jana
2020-06-19Avoid SIGWINCH interruptions of NNN_PIPE IO (#659)Gravatar lvgx
Fixes #656
2020-06-18Initial CONTRIBUTING.md (#655)Gravatar Mario
2020-06-16Update docsGravatar Arun Prakash Jana
2020-06-16added support webp format (#652)Gravatar akimdi
* added support webp format * update nuke plugin with support webp format
2020-06-15Option -u to disable current/selection promptGravatar Arun Prakash Jana
2020-06-15Clear selection after some operations (see notes)Gravatar 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-14Update docsGravatar Arun Prakash Jana
2020-06-14Show '+' in statusbar instead of 's' for selectionGravatar Arun Prakash Jana
2020-06-14Refactor key-val pair parsingGravatar Arun Prakash Jana
2020-06-14Make once-used function inlineGravatar Arun Prakash Jana
2020-06-12Update docsGravatar Arun Prakash Jana
2020-06-11Sane tree defaults and viu support (#649)Gravatar Mario
2020-06-11Feature #534: Support hardware cursor syncGravatar Ian R
2020-06-11Update docsGravatar Arun Prakash Jana
2020-06-11support imv in imgview and nukeGravatar Arun Prakash Jana
2020-06-10Use Firefox Send for upload if ffsend is foundGravatar Arun Prakash Jana
2020-06-10Add hx as alternative hex viewerGravatar Arun Prakash Jana
2020-06-10preview-tui: make scope & pistol run before `file` (#647)Gravatar 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-10Pistol support (#646)Gravatar Mario
2020-06-10Kitty splits (#643)Gravatar 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-10Fixes environmental variables not being passed on preview-tui (#644)Gravatar Mario
2020-06-09Selection mode don't need to be persistentGravatar Arun Prakash Jana
2020-06-09Plugin run flags don't need to be persistentGravatar Arun Prakash Jana
2020-06-09Picker mode doesn't need to be persistentGravatar Arun Prakash Jana