Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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 | 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 | 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-20 | Initialize mask | ||
2020-01-20 | Code refactor | ||
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 | 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 | 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 | Fix alignment | ||
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 | |||
2020-01-15 | Use macro to print error | ||
2020-01-15 | While drawing lines, set correct color | ||
2020-01-14 | (B)Tab for BackTab | ||
2020-01-14 | Show order info in filter info bar | ||
2020-01-14 | Keybind changes | ||
2020-01-14 | Fix doc | ||
2020-01-14 | New lowercase keys | ||
2020-01-14 | Key 0 to lock | ||
2020-01-14 | Remove p and e | ||
2020-01-14 | Fix typo | ||