mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
parent
8afd4e1bc2
commit
06d8d3f55f
5 changed files with 59 additions and 43 deletions
|
@ -166,13 +166,15 @@ pub struct Loader {
|
|||
// highlight_names ?
|
||||
language_configs: Vec<Arc<LanguageConfiguration>>,
|
||||
language_config_ids_by_file_type: HashMap<String, usize>, // Vec<usize>
|
||||
scopes: Vec<String>,
|
||||
}
|
||||
|
||||
impl Loader {
|
||||
pub fn new(config: Configuration) -> Self {
|
||||
pub fn new(config: Configuration, scopes: Vec<String>) -> Self {
|
||||
let mut loader = Self {
|
||||
language_configs: Vec::new(),
|
||||
language_config_ids_by_file_type: HashMap::new(),
|
||||
scopes,
|
||||
};
|
||||
|
||||
for config in config.language {
|
||||
|
@ -192,6 +194,10 @@ impl Loader {
|
|||
loader
|
||||
}
|
||||
|
||||
pub fn scopes(&self) -> &[String] {
|
||||
&self.scopes
|
||||
}
|
||||
|
||||
pub fn language_config_for_file_name(&self, path: &Path) -> Option<Arc<LanguageConfiguration>> {
|
||||
// Find all the language configurations that match this file name
|
||||
// or a suffix of the file name.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue