Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | ||
2020-01-16 | A fancier prompt | ||
2020-01-16 | Quit with an error code (#442) | ||
* Quit with an error code * Use `Q` as "quit with err" * Remove extra var and simplify conditions * Revert combining conditions * Fix formatting * Format help with as much tabs as possible | |||
2020-01-16 | Fixed calculation of capacity on OpenBSD (#441) | ||
2020-01-15 | Release improvements, take 2 (#440) | ||
* Revert "Undo changes from #417" * Do not remove .git folder | |||
2020-01-15 | Change command order | ||
2020-01-15 | Update docs | ||
2020-01-15 | Fix alignment | ||
2020-01-15 | Undo changes from #417 | ||
2020-01-15 | Use shorter lines in man page | ||
2020-01-15 | Use / to toggle string and regex | ||
2020-01-15 | Prepare for release v2.9 | ||
2020-01-15 | Catch NULL from malloc() (#438) | ||
* Catch NULL from malloc() * Tidy up errors * Make indentaion look pretty in git |