1
0
mirror of https://github.com/helix-editor/helix synced 2024-09-21 00:34:57 +02:00

Fix runtime dir lookup.

This commit is contained in:
Blaž Hrastnik 2021-05-10 17:37:04 +09:00
parent e541a75630
commit cd1754f783

View File

@ -66,10 +66,7 @@ fn read_query(language: &str, filename: &str) -> String {
let root = crate::runtime_dir();
// let root = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
let path = root
.join("../runtime/queries")
.join(language)
.join(filename);
let path = root.join("queries").join(language).join(filename);
let query = std::fs::read_to_string(&path).unwrap_or_default();