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
Which works if and only if you don't already have a ~/.config/helix/runtime So for folks going from a package install to a source install, they get an automatically broken runtime directory. ie they'll end up with something like:
~/.config/helix/runtime/runtime
This can be fixed with something like: ln -Ts $PWD/runtime ~/.config/helix/runtime which fails if ~/.config/helix/runtime already exists, at which point the user could delete it or something.
The text was updated successfully, but these errors were encountered:
The docs recommend the command:
Which works if and only if you don't already have a
~/.config/helix/runtime
So for folks going from a package install to a source install, they get an automatically broken runtime directory. ie they'll end up with something like:~/.config/helix/runtime/runtime
This can be fixed with something like:
ln -Ts $PWD/runtime ~/.config/helix/runtime
which fails if~/.config/helix/runtime
already exists, at which point the user could delete it or something.The text was updated successfully, but these errors were encountered: