Closed alixinne closed 1 year ago
The condition changed by this PR would inject false in the ranger command, which makes ranger try to open the false path which doesn't exist.
false
By adding or "" we can default to injecting an empty string if select_current_file is false, which fixes the issue.
or ""
Thanks for the fix @vtavernier! LGTM
The condition changed by this PR would inject
false
in the ranger command, which makes ranger try to open thefalse
path which doesn't exist.By adding
or ""
we can default to injecting an empty string if select_current_file isfalse
, which fixes the issue.