summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
13 daysUpdate lock threads to latestHEADmasterArun Prakash Jana
2024-05-18Merge pull request #1881 from N-R-K/colemak-collisionArun
fix collision in colemak patch
2024-05-11fix collision in colemak patchNRK
Closes: https://github.com/jarun/nnn/issues/1876
2024-05-10Merge pull request #1879 from N-R-K/use_stdioArun
use buffered io to reduce syscalls
2024-05-10use buffered io to reduce syscallsNRK
2024-05-06Fix #1877: use dprintf() instead of write()Arun Prakash Jana
2024-05-05Fix #1877: malloc: error pointer being freed was not allocatedArun Prakash Jana
2024-04-28Fix CI errorArun Prakash Jana
2024-04-28Add commaArun Prakash Jana
2024-04-28Merge pull request #1834 from TheUtopian/masterArun
preview-tabbed: show sxiv/nsxiv in thumbnail mode when watching Pictures folder
2024-04-24Merge pull request #1872 from N-R-K/manpage_sortArun
clarify au and du in manpage
2024-04-24silence new clang-tidy warningsNRK
2024-04-24clarify au and du in manpageNRK
Closes: https://github.com/jarun/nnn/issues/1855 Closes: https://github.com/jarun/nnn/issues/1290 Closes: https://github.com/jarun/nnn/discussions/1750
2024-04-18preview-tabbed: show (n)sxiv in thumbnail mode when watching "Pictures" ↵Oktay Imanzade
directory
2024-04-08Merge pull request #1865 from flipflop133/patch-1Arun
preview-tui: add svg support
2024-04-08preview-tui: add full svg supportFrançois Bechet
2024-04-05Merge pull request #1864 from horrad/masterArun
Fix file creation on OpenBSD
2024-04-04Fix file creation on OpenBSDMartin Ziemer
On OpenBSD at least one of O_RDONLY, O_WRONLY or O_RDWR is needed to open a file. In creating a new file none of those is set, which leads to an EINVAL error ("invalid argument"). Since the new file is only created and never read, I chose to use O_WRONLY.
2024-03-30Merge pull request #1861 from KlzXS/makefile_iconsArun
Prevent multiple icons options being selected at the same time
2024-03-28Prevent multiple icons options being selected at the same timeKlzXS
2024-03-05Merge pull request #1830 from c79cea05/masterArun
nuke: use sort -V
2024-02-23nuke: use sort -Vc79cea05
2024-02-18Fix deletion prompt when rm is usedArun Prakash Jana
2024-02-16Merge pull request #1821 from KlzXS/cpmvrm_dashesArun
Added dashes to progress versions of cp and mv
2024-02-13Add -- to mvg and cpg which were missedKlzXS
2024-02-13Merge pull request #1820 from KlzXS/cpmvrm_dashesArun
Add -- to cp, mv and rm
2024-02-13Added -- to all instances of cp, mv or rm dealing with user provided pathsKlzXS
2024-02-12Merge pull request #1806 from BeyondMagic/masterArun
quitcd: fix old bug and feat. for modular export for nushell
2024-02-10quitcd: fix bugs and feat. for modular export and selective quitJoão F. (BeyondMagic/koetemagie)
2024-02-09fix: use a more generic way to print NUL with awkMichel DHOOGE
Only gawk undestands the \0 syntax feat(mimelist): use `mimetype` for better type detection docs(mimelist): add author & dependencies
2024-02-09Add option to `rm -rf` irrespective of trash setting90
2024-02-09Fix #1765: detect and ignore false mouse clickArun Prakash Jana
2024-02-03show relative line numbering when jumpingNRK
Co-authored-by: Darukutsu <darupeter@pm.me> Closes: https://github.com/jarun/nnn/pull/1804 Closes: https://github.com/jarun/nnn/discussions/1708
2024-02-02Changed exa from grid to tree view (preview-tui) (#1803)Antonio Mancera Gamez
* Changed exa from grid to tree view (preview-tui) * Update plugins/preview-tui Change also eza Co-authored-by: blissful <blissful@sunsetglow.net> * Changed maximum depth in exa and eza * Added fifo_pager to exa and eza --------- Co-authored-by: blissful <blissful@sunsetglow.net>
2023-12-15Merge pull request #1783 from 7ocb/alternative-setenv-pwd-3Arun
Setting PWD: set on use case, not on browse
2023-12-15Merge pull request #1782 from BeyondMagic/masterArun
fix nushell quitcd script: remove deprecated keywords
2023-12-14Setting PWD: set on use case, not on browseme
This moves setting PWD environment variable closer to the places where child process (that needs PWD correctly set) is started instead of start it on browse.
2023-12-13fix nu quitcd: remove deprecated keywordsJoão F. (BeyondMagic/koetemagie)
2023-12-08Merge pull request #1778 from 7ocb/set-PWD-to-current-pathArun
Set PWD environment variable
2023-12-08Merge pull request #1775 from JefeDavis/masterArun
feat(preview-tui): allow image previews inside tmux on kitty terminal
2023-12-04Set PWD environment variableme
This is to make spawned shells and processes to see "logical" path.
2023-12-03feat(preview-tui): allow image previews inside tmux on kitty terminalJeff Davis
Signed-off-by: Jeff Davis <mr.jefedavis@gmail.com>
2023-11-25Merge pull request #1770 from 7ocb/pass-path-to-abspathArun
When handling SEL_NEW pass `path` to `abspath` call
2023-11-25Merge pull request #1773 from 7ocb/handle-link-by-readlink-not-realpath-mk2Arun
When handling bookmark, use readlink, not realpath
2023-11-22When handling bookmark, use readlink, not realpathme
This is to cd to path as it pointed by symlink, not to it's real path. Bookmarked directory may itself contain symlinks in path, which should be respected. For example: if directory is physically in /mnt/storage/some and it's symlinked to ~/some and directory ~/some/dir added to bookmarks, it's expected that when following bookmark directory will be changed to ~/some/dir (as in bookmark's link) not to /mnt/storage/some/dir (as dir real path).
2023-11-21Merge pull request #1769 from N-R-K/fix-helpstrArun
fix buffer overflow on certain platforms
2023-11-21When handling SEL_NEW pass `path` to `abspath` callme
If `path` is not provided to `abspath`, later will do `getcwd`, and it's result will differ from `path`. This causes problem that when creating directory inside path reached with symlink, subsequent call to get_cwd_entry does not recognize newly created path as subpath of current path, thus not selecting newly created element.
2023-11-21silence ci warningNRK
2023-11-21fix buffer overflow on certain platformsNRK
the size of g_buf depends on PATH_MAX and NAME_MAX which on certain platforms (such as mac) might not be big enough to decode the help string. use an explicit buffer with proper size instead. Closes: https://github.com/jarun/nnn/issues/1768
2023-11-19Merge pull request #1762 from azuline/sortctxArun
restore sort function pointers when restoring cfg