Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-31 | Auto-proceed on open (key + to toggle) | ||
2020-01-30 | Run GUI app as plugin | ||
2020-01-29 | Fallbacks for absent NAME_MAX and PATH_MAX (#455) | ||
* Fallbacks for absent NAME_MAX and PATH_MAX Certainly NAME_MAX isn't guaranteed to exist and on (some versions of?) Illumos and SmartOS it doesn't, so provide some reasonably accommodating fallbacks. * Smaller limits * Remove now redundant PATH_MAX definition for Hurd | |||
2020-01-29 | Use enough buffer length for file names | ||
2020-01-28 | Remove redundant lib only for older GLIBC | ||
2020-01-27 | Fix typo | ||
2020-01-27 | Exit prompt on ^D at empty prompt | ||
2020-01-27 | Added more readline bindings (#452) | ||
2020-01-25 | Add -DNORL when var O_STATIC is set | ||
2020-01-25 | Revert "Test static packaging" | ||
This reverts commit dbcbaa583c4c95ba211bf51127083670a07b430c. | |||
2020-01-25 | Test static packaging | ||
2020-01-24 | Move compilation notes to Wiki | ||
2020-01-24 | Makefile option to compile with PCRE lib | ||
Command: make O_PCRE=1 strip | |||
2020-01-24 | PCRE 2 - fix check for filter match | ||
Kind contribution from uno20001: https://old.reddit.com/r/C_Programming/comments/etavho/file_manager_nnn_needs_help_with_pcre/fffk4wr/ | |||
2020-01-24 | PCRE 2 - fix compilation error | ||
2020-01-24 | PCRE - add error handling | ||
2020-01-24 | Detach process with F_NOWAIT (#450) | ||
* Experimental PCRE library support To compile with PCRE install libpcre-dev(el) and run: cc -Wall -Wextra -O3 -DPCRE -D_GNU_SOURCE -D_DEFAULT_SOURCE -I/usr/include/ncursesw -I/usr/include -o nnn src/nnn.c -lreadline -lncursesw -ltinfo -lpcre * Detach process with F_NOWAIT Co-authored-by: Mischievous Meerkat <engineerarun@gmail.com> | |||
2020-01-24 | Experimental PCRE library support | ||
To compile with PCRE install libpcre-dev(el) and run: cc -Wall -Wextra -O3 -DPCRE -D_GNU_SOURCE -D_DEFAULT_SOURCE -I/usr/include/ncursesw -I/usr/include -o nnn src/nnn.c -lreadline -lncursesw -ltinfo -lpcre | |||
2020-01-23 | Add static compilation flag | ||
make command: make O_STATIC=1 O_NORL=1 strip | |||
2020-01-23 | Do not show file name in status bar | ||
Both in light and detail modes we show more characters than in status bar. | |||
2020-01-23 | Lazy unmount, umount (macOS) support | ||
2020-01-22 | nuke: add glow to preview markdown | ||
2020-01-22 | Check if path exists before trying to create | ||
2020-01-22 | Use indicative dir names when creating | ||
2020-01-21 | Remove redundant variables/assignments | ||
2020-01-21 | Remove redundant check | ||
2020-01-21 | Update badges | ||
2020-01-20 | Initialize mask | ||
2020-01-20 | Code refactor | ||
2020-01-20 | Revert "Update badges" | ||
This reverts commit 3d98daaf27a0ac20dc4914e756faeb9da77f0b7a. | |||
2020-01-20 | Update badges | ||
2020-01-19 | Refactor | ||
2020-01-19 | Copy current name in API | ||
2020-01-18 | Refactor | ||
2020-01-18 | checkpatch.pl fixes | ||
2020-01-18 | Shorten env vars | ||
2020-01-18 | Use macro | ||
2020-01-18 | Get rid of modulo operation | ||
2020-01-18 | Key F5 toggle hidden | ||
2020-01-18 | Merge functions | ||
2020-01-18 | fixed a formating error (#444) | ||
Some normal text was indent a little, which caused to to become a code | |||
2020-01-18 | Use simpler logic to show progress on Linux | ||
2020-01-17 | Clear lastname is the top file is deleted | ||
2020-01-17 | Revert "Revert "Fixed calculation of capacity on OpenBSD (#441)"" | ||
This reverts commit 681b22d5c76356912fe29eb5769a92634329ad9b. The statvfs man page: http://man7.org/linux/man-pages/man3/statvfs.3.html says clearly: fsblkcnt_t f_blocks; /* Size of fs in f_frsize units */ I missed this earlier. | |||
2020-01-17 | Options -e and -t | ||
Replaces the following environment variables: - NNN_USE_EDITOR - NNN_IDLE_TIMEOUT | |||
2020-01-17 | Fix: crash on entering empty dir, then press down | ||
2020-01-17 | Remove redundant check | ||
2020-01-16 | Use do-while instead of while | ||
2020-01-16 | Revert "Fixed calculation of capacity on OpenBSD (#441)" | ||
This reverts commit 527e995f1f6686966fcf13181d7a922d913aac95. | |||
2020-01-16 | Update docs | ||