diff options
Diffstat (limited to 'helix-core/src/syntax.rs')
-rw-r--r-- | helix-core/src/syntax.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index dbeed45c..aaf22edc 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -63,7 +63,8 @@ fn read_query(language: &str, filename: &str) -> String { static INHERITS_REGEX: Lazy<Regex> = Lazy::new(|| Regex::new(r";+\s*inherits\s*:?\s*([a-z_,()]+)\s*").unwrap()); - let root = PathBuf::from(env!("CARGO_MANIFEST_DIR")); + let root = crate::runtime_dir(); + // let root = PathBuf::from(env!("CARGO_MANIFEST_DIR")); let path = root .join("../runtime/queries") |