mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
.iconlookup: shebang to env sh
This commit is contained in:
parent
5cf723fbe4
commit
9fcdf78643
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
# Description: Print icons in front of list of directories/files
|
# Description: Print icons in front of list of directories/files
|
||||||
|
|
||||||
|
|
|
@ -169,8 +169,7 @@ preview_file() {
|
||||||
cd "$1" || return
|
cd "$1" || return
|
||||||
if exists tree; then
|
if exists tree; then
|
||||||
if [ "$ICONLOOKUP" -ne 0 ]; then
|
if [ "$ICONLOOKUP" -ne 0 ]; then
|
||||||
tree -L 1 --dirsfirst -F --noreport -i | head -n "$((lines - 3))" | \
|
tree -L 1 --dirsfirst -F --noreport -i | head -n "$((lines - 3))" | "$(dirname "$0")"/.iconlookup -l "$cols" -b "\n"
|
||||||
"${XDG_CONFIG_HOME:-$HOME/.config}/nnn/plugins/.iconlookup" -l "$cols" -b "\n"
|
|
||||||
else
|
else
|
||||||
fifo_pager tree -L 1 --dirsfirst -C -F --noreport -i
|
fifo_pager tree -L 1 --dirsfirst -C -F --noreport -i
|
||||||
fi;
|
fi;
|
||||||
|
|
Loading…
Reference in a new issue