how to uninstall helix which was installed from source?i #5228
-
installed using
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can use Then remove the If you want to remove all files related to Helix (any configuration files or custom themes), you can remove the entire |
Beta Was this translation helpful? Give feedback.
You can use
cargo uninstall
from thehelix-term
directory within the repository to remove thehx
binary.Then remove the
~/.config/helix/runtime
(unix),%AppData%\helix\runtime
(Windows cmd), or$Env:AppData\helix\runtime
(Windows PowerShell) directory to remove the runtime directory.If you want to remove all files related to Helix (any configuration files or custom themes), you can remove the entire
~/.config/helix
/%AppData%\helix
/$Env:AppData\helix
directory and you can remove the log filehelix.log
from the~/.cache/helix
/%AppData\Roaming\helix
/$Env:AppData\helix
directory. But if you are switching from a from-source build to a build from a package manager, you will want to sk…