Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-02-17 | Minor reformat | Arun Prakash Jana | |
2020-02-14 | Remember file name when refresh is not requested | Arun Prakash Jana | |
2020-02-14 | Polish PR #476 | Arun Prakash Jana | |
2020-02-14 | Add NNN_OPTS environment variable feature (#476) | Uffe Jakobsen | |
2020-02-14 | Remove redundant mouse mask variable | Arun Prakash Jana | |
2020-02-14 | Compile option O_NOMOUSE to disable mouse support | Arun Prakash Jana | |
2020-02-14 | Minor refactor | Arun Prakash Jana | |
2020-02-14 | Use atoi from lib, use attribute for unused | Arun Prakash Jana | |
2020-02-13 | Minor refactor | Arun Prakash Jana | |
2020-02-13 | Use s in statusbar to indicate selection enabled | Arun Prakash Jana | |
2020-02-12 | Enable UTF8 for PCRE | Arun Prakash Jana | |
2020-02-12 | Prepare for release v3.0 | Arun Prakash Jana | |
2020-02-10 | Do not end selection on redraw | Arun Prakash Jana | |
2020-02-09 | Fix prefix calcualtion | Arun Prakash Jana | |
2020-02-09 | When a file is edited, vim adds a \n at the end | Arun Prakash Jana | |
2020-02-09 | Simplify and fix common prefix calculation | Arun Prakash Jana | |
2020-02-08 | Fix build break | Arun Prakash Jana | |
2020-02-08 | Use xrealpath() to show unresolved symlinks | Arun Prakash Jana | |
2020-02-08 | Ignore . and .. in file list | Arun Prakash Jana | |
2020-02-08 | 1. dirname() loses path, 2. use realpath() | Arun Prakash Jana | |
2020-02-08 | Show target file size in list mode | Arun Prakash Jana | |
2020-02-08 | Fix empty dir on list files | Arun Prakash Jana | |
2020-02-07 | Clear filter on a manual dir relaod | Arun Prakash Jana | |
2020-02-04 | Minor refactor | Arun Prakash Jana | |
2020-02-02 | Late allocate memory for path pointers | Arun Prakash Jana | |
2020-02-02 | xrealloc() may move memory | Arun Prakash Jana | |
2020-02-02 | Fix build break | Arun Prakash Jana | |
2020-02-02 | Refactor file list processing | Arun Prakash Jana | |
2020-02-01 | Fix #446 | Arun Prakash Jana | |
2020-02-01 | Reduce the number of redundant checks | Arun Prakash Jana | |
2020-02-01 | List of files as input (#443) | KlzXS | |
* Start implementation on show list of files as input * Remove tmp dir on exit, set global flag * Bug fixes and improvements * Follow symlinks when in list paths mode * Fix bugs * Add flag check * Add message for invalid paths and style fixes * Change the message * Addressing review comments * Handle errno being set * Fix CI break * Decreased startup memory usage and removed loops * Fix CI break | |||
2020-02-01 | Do not swallow keypress after printwait (#461) | Maxim Baz | |
2020-02-01 | Use _exit() to terminate children | Arun Prakash Jana | |
The NNN_PIPE file gets deleted after spawning a child in NOWAIT mode. Steps: - open `nnn` with option `-x` - press `;o` (custom binding) to open fzopen plugin - press `^J` to select a file; it will spawn plugin `.cbcp` in NOWAIT mode - when the intermediate child quits, the NNN_PIPE of parent is also deleted | |||
2020-02-01 | Ignore link assuming stdscr is NULL | Arun Prakash Jana | |
2020-02-01 | Fix #459 | Arun Prakash Jana | |
The following changes are made: - STDOUT and STDIN are redirected to /dev/null when spawning rclone rclone blocks and also shows error/warning messages. nnn needs to spawn rclone and return without waiting. To avoid the rclone messages from corrupting the screen nnn makes the child silent. Note: sshfs returns after mount with a proper error code - prompt only if both sshfs and rclone are installed | |||
2020-01-31 | Auto-proceed on open (key + to toggle) | Arun Prakash Jana | |
2020-01-30 | Run GUI app as plugin | Arun Prakash Jana | |
2020-01-29 | Fallbacks for absent NAME_MAX and PATH_MAX (#455) | Sijmen J. Mulder | |
* 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 | Arun Prakash Jana | |
2020-01-27 | Fix typo | Arun Prakash Jana | |
2020-01-27 | Exit prompt on ^D at empty prompt | Arun Prakash Jana | |
2020-01-27 | Added more readline bindings (#452) | Ethan R | |
2020-01-24 | PCRE 2 - fix check for filter match | Arun Prakash Jana | |
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 | Arun Prakash Jana | |
2020-01-24 | PCRE - add error handling | Arun Prakash Jana | |
2020-01-24 | Detach process with F_NOWAIT (#450) | KlzXS | |
* 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 | Arun Prakash Jana | |
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 | Arun Prakash Jana | |
Both in light and detail modes we show more characters than in status bar. | |||
2020-01-23 | Lazy unmount, umount (macOS) support | Arun Prakash Jana | |
2020-01-22 | Check if path exists before trying to create | Arun Prakash Jana | |