mirror of https://github.com/helix-editor/helix
hack: make queries load relative to source dir for now.
We want to provide a runtime dir later on.pull/11/head
parent
12961d657f
commit
f0d49d3ca4
|
@ -65,12 +65,14 @@ impl LanguageConfiguration {
|
||||||
.get_or_init(|| {
|
.get_or_init(|| {
|
||||||
// let name = get_language_name(&self.language_id);
|
// let name = get_language_name(&self.language_id);
|
||||||
|
|
||||||
|
let root = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
||||||
|
|
||||||
let highlights_query =
|
let highlights_query =
|
||||||
std::fs::read_to_string(self.path.join("queries/highlights.scm"))
|
std::fs::read_to_string(root.join(&self.path).join("queries/highlights.scm"))
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
|
||||||
let injections_query =
|
let injections_query =
|
||||||
std::fs::read_to_string(self.path.join("queries/injections.scm"))
|
std::fs::read_to_string(root.join(&self.path).join("queries/injections.scm"))
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
|
||||||
let locals_query = "";
|
let locals_query = "";
|
||||||
|
|
Loading…
Reference in New Issue