Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-03 | Document list files | 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-02 | Remove redundant example | Arun Prakash Jana | |
2020-02-01 | Update docs | 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 | Upload static binary as package | Arun Prakash Jana | |
2020-01-31 | Compile static bin locally for release (#457) | Maxim Baz | |
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-28 | Remove redundant lib only for older GLIBC | 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-25 | Add -DNORL when var O_STATIC is set | Arun Prakash Jana | |
2020-01-25 | Revert "Test static packaging" | Arun Prakash Jana | |
This reverts commit dbcbaa583c4c95ba211bf51127083670a07b430c. | |||
2020-01-25 | Test static packaging | Arun Prakash Jana | |
2020-01-24 | Move compilation notes to Wiki | Arun Prakash Jana | |
2020-01-24 | Makefile option to compile with PCRE lib | Arun Prakash Jana | |
Command: make O_PCRE=1 strip | |||
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 | Add static compilation flag | Arun Prakash Jana | |
make command: make O_STATIC=1 O_NORL=1 strip | |||
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 | nuke: add glow to preview markdown | Arun Prakash Jana | |
2020-01-22 | Check if path exists before trying to create | Arun Prakash Jana | |
2020-01-22 | Use indicative dir names when creating | Arun Prakash Jana | |
2020-01-21 | Remove redundant variables/assignments | Arun Prakash Jana | |
2020-01-21 | Remove redundant check | Arun Prakash Jana | |