aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2020-08-05Show locaiton in context colorGravatar Arun Prakash Jana
2020-08-05Show file details in file missing colorsGravatar Arun Prakash Jana
2020-08-05Set dir to bold only if requiredGravatar Arun Prakash Jana
2020-08-05Code reformatGravatar Arun Prakash Jana
2020-08-05Show dirs in boldGravatar Arun Prakash Jana
2020-08-04Fix build breakGravatar Arun Prakash Jana
2020-08-04Update docsGravatar Arun Prakash Jana
2020-08-04Support file colors in detail modeGravatar Arun Prakash Jana
2020-08-04Program option to use olderGravatar Arun Prakash Jana
2020-08-04Support file colorsGravatar Arun Prakash Jana
2020-08-04Detect odd hex symbols in NNN_COLORSGravatar Arun Prakash Jana
2020-08-03Identify orphaned symlinksGravatar Arun Prakash Jana
2020-08-03Use wrapper APIGravatar Arun Prakash Jana
2020-08-03Fix #691Gravatar Arun Prakash Jana
2020-08-02Minor reformatGravatar Arun Prakash Jana
2020-08-02Revert "Reduce processing if NNN_COLORS is unset"Gravatar Arun Prakash Jana
This reverts commit b948423a80759becf7c1ca2c9831960b5b43c5f8.
2020-08-02Reduce processing if NNN_COLORS is unsetGravatar Arun Prakash Jana
2020-08-02Clear selection list after copyGravatar Arun Prakash Jana
Without this, there is a conflict with using the `-u` option (use selection). After copying selected files, the selection is intact and if the user issues a deletion next, the source files (meant for copying) are deleted.
2020-08-02Fix illegal accessGravatar Arun Prakash Jana
2020-08-02Support xterm 256 colorGravatar Arun Prakash Jana
2020-08-02Avoid redundant printw() call for orderGravatar Arun Prakash Jana
2020-08-02Show selection in reverse in status barGravatar Arun Prakash Jana
2020-08-01Fix build breakGravatar Arun Prakash Jana
2020-08-01Write last dir on quit in vim picker modeGravatar Martin Roa Villescas
2020-07-22Code reductionGravatar Arun Prakash Jana
2020-07-22Create mountpoint by hostname, clear promptGravatar Arun Prakash Jana
2020-07-22Fix #684: support path appended to hostnameGravatar Arun Prakash Jana
2020-07-21Fix #685: indicator H fo hiddenGravatar Arun Prakash Jana
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-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-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-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-19Avoid SIGWINCH interruptions of NNN_PIPE IO (#659)Gravatar lvgx
Fixes #656
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