mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-10 10:35:16 +03:00
Fix runtime dir lookup.
This commit is contained in:
parent
e541a75630
commit
cd1754f783
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user