mirror of
https://github.com/jarun/nnn.git
synced 2025-01-08 09:01:11 +00:00
plugin: fzopen: print full path for picker mode
Closes: https://github.com/mcchrish/nnn.vim/issues/133
This commit is contained in:
parent
473cd271b5
commit
a47376ee04
|
@ -42,9 +42,9 @@ fi
|
||||||
if [ "$3" ]; then
|
if [ "$3" ]; then
|
||||||
if [ "$entry" ]; then
|
if [ "$entry" ]; then
|
||||||
if [ "-" = "$3" ]; then
|
if [ "-" = "$3" ]; then
|
||||||
printf "%s\n" "$entry"
|
printf "%s\n" "${2}/$entry"
|
||||||
else
|
else
|
||||||
printf "%s\n" "$entry" > "$3"
|
printf "%s\n" "${2}/$entry" > "$3"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Tell `nnn` to clear its internal selection
|
# Tell `nnn` to clear its internal selection
|
||||||
|
|
Loading…
Reference in a new issue