Skip to content

Commit 227b193

Browse files
authored
Merge pull request #2104 from babbaj/fix-preview-tui-eza
Fix eza in preview-tui
2 parents 6185e1d + 465f305 commit 227b193

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)