You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when neovim used is appimage the executed command path is pointing to somewhere in /tmp directory and will be obviously lost on system restart
I would suggest that we add some way of dealing with this, the following is my suggestion
in _just_command add something like xargs basenamesed 's/.*\/\(\w*\)/\1/' which will extract the last part of the path, or something modified to handle the other cases
The text was updated successfully, but these errors were encountered:
when neovim used is appimage the executed command path is pointing to somewhere in
/tmp
directory and will be obviously lost on system restartI would suggest that we add some way of dealing with this, the following is my suggestion
in
_just_command
add something likexargs basename
sed 's/.*\/\(\w*\)/\1/'
which will extract the last part of the path, or something modified to handle the other casesThe text was updated successfully, but these errors were encountered: