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
While using the recommended workflow, Minilla tried to invoke my $EDITOR. Except it invokes $EDITOR as if it were a single executable, though it can have args (and mine does: vim -Nu ~/.vimrc.EDITOR)
I'll add a pull request to invoke sh -c '${EDITOR:-vi} "$1"' sh $file properly. This is Unix-y, but I don't suppose Windows users having cmd.exe as their shell really have a $EDITOR.
The text was updated successfully, but these errors were encountered:
While using the recommended workflow, Minilla tried to invoke my
$EDITOR
. Except it invokes$EDITOR
as if it were a single executable, though it can have args (and mine does:vim -Nu ~/.vimrc.EDITOR
)I'll add a pull request to invoke
sh -c '${EDITOR:-vi} "$1"' sh $file
properly. This is Unix-y, but I don't suppose Windows users havingcmd.exe
as their shell really have a$EDITOR
.The text was updated successfully, but these errors were encountered: