mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03:00
Add llvm-mir highlighting (#1398)
* Add injection regex for more languages To support embedding them in other languages like markdown. * Add llvm-mir highlighting LLVM Machine IR is dumped as yaml files that can embed LLVM IR and Machine IR. To support this, add a llvm-mir-yaml language that uses the yaml parser, but uses different injections to highlight IR and MIR. * Update submodule with fixed multiline comments Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
This commit is contained in:
parent
7c9d3682db
commit
641255ccc8
14 changed files with 203 additions and 3 deletions
|
@ -67,6 +67,8 @@ pub struct LanguageConfiguration {
|
|||
#[serde(default)]
|
||||
pub diagnostic_severity: Severity,
|
||||
|
||||
pub tree_sitter_library: Option<String>, // tree-sitter library name, defaults to language_id
|
||||
|
||||
// content_regex
|
||||
#[serde(default, skip_serializing, deserialize_with = "deserialize_regex")]
|
||||
pub injection_regex: Option<Regex>,
|
||||
|
@ -192,9 +194,14 @@ impl LanguageConfiguration {
|
|||
if highlights_query.is_empty() {
|
||||
None
|
||||
} else {
|
||||
let language = get_language(&crate::RUNTIME_DIR, &self.language_id)
|
||||
.map_err(|e| log::info!("{}", e))
|
||||
.ok()?;
|
||||
let language = get_language(
|
||||
&crate::RUNTIME_DIR,
|
||||
self.tree_sitter_library
|
||||
.as_deref()
|
||||
.unwrap_or(&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