feat: first take at milestone M3

This commit is contained in:
2026-04-05 16:28:59 +02:00
parent 118633de81
commit b755c6bcbc
27 changed files with 5372 additions and 134 deletions

View File

@@ -1,11 +1,15 @@
use std::collections::HashMap;
use syntect::highlighting::{Style, ThemeSet};
use syntect::parsing::{SyntaxReference, SyntaxSet};
/// Syntax highlighter using syntect.
/// Syntax highlighter using syntect with line-level caching.
pub struct Highlighter {
syntax_set: SyntaxSet,
theme_set: ThemeSet,
theme_name: String,
/// Extension aliases (e.g. "liquid" → "html")
extension_aliases: HashMap<String, String>,
}
/// A line of highlighted text: spans of (style, text).
@@ -13,17 +17,29 @@ pub type HighlightedLine = Vec<(Style, String)>;
impl Highlighter {
pub fn new() -> Self {
let mut extension_aliases = HashMap::new();
// Liquid templates use HTML syntax highlighting
extension_aliases.insert("liquid".into(), "html".into());
extension_aliases.insert("njk".into(), "html".into());
Self {
syntax_set: SyntaxSet::load_defaults_newlines(),
theme_set: ThemeSet::load_defaults(),
theme_name: "base16-ocean.dark".to_string(),
extension_aliases,
}
}
/// Find the syntax definition for a file extension.
/// Resolves aliases (e.g. liquid → html) before lookup.
pub fn syntax_for_extension(&self, ext: &str) -> &SyntaxReference {
let resolved = self
.extension_aliases
.get(ext)
.map(|s| s.as_str())
.unwrap_or(ext);
self.syntax_set
.find_syntax_by_extension(ext)
.find_syntax_by_extension(resolved)
.unwrap_or_else(|| self.syntax_set.find_syntax_plain_text())
}
@@ -49,6 +65,43 @@ impl Highlighter {
result
}
/// Highlight only a visible range of lines (start..start+count) for a given text.
/// Re-parses from the beginning to maintain correct parse state, but only
/// collects highlight output for the visible window.
pub fn highlight_visible_range(
&self,
text: &str,
syntax: &SyntaxReference,
start: usize,
count: usize,
) -> Vec<HighlightedLine> {
use syntect::easy::HighlightLines;
let theme = &self.theme_set.themes[&self.theme_name];
let mut h = HighlightLines::new(syntax, theme);
let mut result = Vec::new();
let end = start + count;
for (idx, line) in text.lines().enumerate() {
let line_with_newline = format!("{line}\n");
let ranges = h
.highlight_line(&line_with_newline, &self.syntax_set)
.unwrap_or_default();
if idx >= start && idx < end {
let styled: HighlightedLine = ranges
.into_iter()
.map(|(style, text)| (style, text.to_string()))
.collect();
result.push(styled);
}
if idx >= end {
break;
}
}
result
}
}
impl Default for Highlighter {
@@ -78,4 +131,42 @@ mod tests {
let lines = h.highlight_lines("hello", syntax);
assert_eq!(lines.len(), 1);
}
#[test]
fn liquid_uses_html_syntax() {
let h = Highlighter::new();
let liquid_syntax = h.syntax_for_extension("liquid");
let html_syntax = h.syntax_for_extension("html");
assert_eq!(liquid_syntax.name, html_syntax.name);
}
#[test]
fn json_syntax_available() {
let h = Highlighter::new();
let syntax = h.syntax_for_extension("json");
assert_ne!(syntax.name, "Plain Text");
}
#[test]
fn yaml_syntax_available() {
let h = Highlighter::new();
let syntax = h.syntax_for_extension("yaml");
assert_ne!(syntax.name, "Plain Text");
}
#[test]
fn lua_syntax_available() {
let h = Highlighter::new();
let syntax = h.syntax_for_extension("lua");
assert_ne!(syntax.name, "Plain Text");
}
#[test]
fn highlight_visible_range_returns_subset() {
let h = Highlighter::new();
let syntax = h.syntax_for_extension("md");
let text = "# Line 1\nLine 2\nLine 3\nLine 4\nLine 5";
let visible = h.highlight_visible_range(text, syntax, 1, 2);
assert_eq!(visible.len(), 2);
}
}