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 uninstallfrom thehelix-termdirectory within the repository to remove thehxbinary.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\helixdirectory and you can remove the log filehelix.logfrom the~/.cache/helix/%AppData\Roaming\helix/$Env:AppData\helixdirectory. But if you are switching from a from-source build to a build from a package manager, you will want to sk…