diff options
author | Blaž Hrastnik | 2021-05-10 07:21:55 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-10 07:21:55 +0000 |
commit | 1f2d87cb950f165e8a805fc578d7921b48fbdedb (patch) | |
tree | ce2ac182f5b20ccff872ce4e3b92e15203e31c82 /helix-core/src | |
parent | 37d32e2933448bd100e09b30401d87c60c7eba88 (diff) |
Make the config dir locator work on Windows.
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/lib.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index e68dc186..5ce6a63f 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -58,9 +58,11 @@ pub fn runtime_dir() -> std::path::PathBuf { pub fn config_dir() -> std::path::PathBuf { // TODO: allow env var override - let xdg_dirs = - xdg::BaseDirectories::with_prefix("helix").expect("Unable to find XDG directories!"); - xdg_dirs.get_config_home() + use etcetera::base_strategy::{choose_base_strategy, BaseStrategy}; + let strategy = choose_base_strategy().expect("Unable to find the config directory!"); + let mut path = strategy.config_dir(); + path.push("helix"); + path } pub use ropey::{Rope, RopeSlice}; |