Skip to content

Commit

Permalink
Add support for eza as a replacement for exa
Browse files Browse the repository at this point in the history
  • Loading branch information
azuline committed Sep 20, 2023
1 parent dd07aeb commit 3b3ad9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/preview-tui
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# - Windows Terminal (https://github.com/Microsoft/Terminal | https://aka.ms/terminal) with WSL, or
# - $NNN_TERMINAL set to a terminal (it's xterm by default).
# - less or $NNN_PAGER
# - tree or exa or (GNU) ls
# - tree or exa/eza or (GNU) ls
# - mediainfo or file
# - mktemp
# - unzip
Expand Down Expand Up @@ -350,6 +350,8 @@ preview_file() {
fifo_pager tree --filelimit "$(find . -maxdepth 1 | wc -l)" -L 3 -C -F --dirsfirst --noreport
elif exists exa; then
exa -G --group-directories-first --colour=always
elif exists eza; then # eza is a community fork of exa (exa is unmaintained)
eza -G --group-directories-first --colour=always
else
fifo_pager ls -F --group-directories-first --color=always
fi
Expand Down

0 comments on commit 3b3ad9c

Please sign in to comment.