Remove the path specifier.

This commit is contained in:
Blaž Hrastnik 2021-04-09 17:42:37 +09:00
parent 61872de6c0
commit c1e5733b02
3 changed files with 3 additions and 15 deletions

View file

@ -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");