Skip to content

Commit 465f305

Browse files
committed
fix eza in preview-tui
1 parent 6185e1d commit 465f305

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/preview-tui

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,9 +389,9 @@ preview_file() {
389389
elif exists tree; then
390390
fifo_pager tree --filelimit "$(find . -maxdepth 1 | wc -l)" -L 3 -C -F --dirsfirst --noreport
391391
elif exists exa; then
392-
fifo_pager exa -T --group-directories-first --colour=always -L 3
392+
fifo_pager exa -T --group-directories-first --colour=always -L 3 .
393393
elif exists eza; then # eza is a community fork of exa (exa is unmaintained)
394-
fifo_pager eza -T --group-directories-first --colour=always -L 3
394+
fifo_pager eza -T --group-directories-first --colour=always -L 3 .
395395
else
396396
fifo_pager ls -F --group-directories-first --color=always
397397
fi

0 commit comments

Comments
 (0)