mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Remove the path specifier.
This commit is contained in:
parent
61872de6c0
commit
c1e5733b02
3 changed files with 3 additions and 15 deletions
|
@ -27,7 +27,7 @@ pub struct LanguageConfiguration {
|
|||
pub file_types: Vec<String>, // filename ends_with? <Gemfile, rb, etc>
|
||||
pub roots: Vec<String>, // these indicate project roots <.git, Cargo.toml>
|
||||
|
||||
pub path: PathBuf,
|
||||
// pub path: PathBuf,
|
||||
// root_path for tree-sitter (^)
|
||||
|
||||
// content_regex
|
||||
|
@ -104,6 +104,8 @@ impl LanguageConfiguration {
|
|||
let language = get_language_name(self.language_id).to_ascii_lowercase();
|
||||
|
||||
let highlights_query = read_query(&language, "highlights.scm");
|
||||
// always highlight syntax errors
|
||||
// highlights_query += "\n(ERROR) @error";
|
||||
|
||||
let injections_query = read_query(&language, "injections.scm");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue