mirror of
https://github.com/jarun/nnn.git
synced 2025-03-18 20:39:45 +00:00
Sane tree defaults and viu support (#649)
This commit is contained in:
parent
1f22da2994
commit
5a565675c0
1 changed files with 3 additions and 1 deletions
|
@ -142,7 +142,7 @@ preview_file () {
|
||||||
if [ -d "$1" ]; then
|
if [ -d "$1" ]; then
|
||||||
cd "$1" || return
|
cd "$1" || return
|
||||||
if exists tree; then
|
if exists tree; then
|
||||||
fifo_pager tree
|
fifo_pager tree -L 3 -F
|
||||||
elif exists exa; then
|
elif exists exa; then
|
||||||
fifo_pager exa -G --colour=always 2>/dev/null
|
fifo_pager exa -G --colour=always 2>/dev/null
|
||||||
else
|
else
|
||||||
|
@ -156,6 +156,8 @@ preview_file () {
|
||||||
"$1" &
|
"$1" &
|
||||||
elif exists catimg; then
|
elif exists catimg; then
|
||||||
catimg "$1"
|
catimg "$1"
|
||||||
|
elif exists viu; then
|
||||||
|
viu -t "$1"
|
||||||
else
|
else
|
||||||
fifo_pager print_bin_info "$1"
|
fifo_pager print_bin_info "$1"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue