mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 20:37:44 +03:00
log syntax highlighting init errors (#895)
This commit is contained in:
parent
0f886af4b9
commit
0cb5e0b2ca
6 changed files with 22 additions and 19 deletions
|
@ -186,7 +186,9 @@ impl LanguageConfiguration {
|
|||
if highlights_query.is_empty() {
|
||||
None
|
||||
} else {
|
||||
let language = get_language(&crate::RUNTIME_DIR, &self.language_id).ok()?;
|
||||
let language = get_language(&crate::RUNTIME_DIR, &self.language_id)
|
||||
.map_err(|e| log::info!("{}", e))
|
||||
.ok()?;
|
||||
let config = HighlightConfiguration::new(
|
||||
language,
|
||||
&highlights_query,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue