Updated .nmv to support current when NNN_LIST

NNN_LIST now should pass listroo
This commit is contained in:
KlzXS 2021-11-07 22:08:43 +01:00
parent e2c4445d74
commit 22096ee0cd
No known key found for this signature in database
GPG Key ID: 6F2A29F874A14243
2 changed files with 6 additions and 4 deletions

View File

@ -51,7 +51,11 @@ else
findcmd="$findcmd ! -name \".*\""
fi
findcmd="$findcmd -print"
if [ -z "$NNN_LIST" ]; then
findcmd="$findcmd -print"
else
findcmd="$findcmd -printf "'"'"$NNN_LIST/%P\n"'"'
fi
arr=$(eval "$findcmd" | sort)
fi

View File

@ -7269,9 +7269,7 @@ nochange:
case SEL_RENAMEMUL:
endselection(TRUE);
setenv("INCLUDE_HIDDEN", xitoa(cfg.showhidden), 1);
setenv("NNN_LIST", listpath
? xitoa(is_prefix(path, listpath, xstrlen(listpath)))
: "0", 1);
setenv("NNN_LIST", listpath ? listroot : "", 1);
if (!(getutil(utils[UTIL_BASH])
&& plugscript(utils[UTIL_NMV], F_CLI))