feat: rename file type to .multicursor

This commit is contained in:
Nikita Revenco 2025-01-28 20:57:46 +00:00
parent 3fed359a0f
commit 8eb0ac4123

View file

@ -41,9 +41,9 @@ pub fn highlighted_code_block<'a>(
let get_theme = |key: &str| -> Style { theme.map(|t| t.get(key)).unwrap_or_default() };
// Apply custom rendering rules to Helix code blocks.
// Apply custom rendering rules to multicursor code blocks.
// These render selections as if in the real editor.
if language == "helix" {
if language == "multicursor" {
let (text, selections) = match parse_selection_string(text) {
Ok(value) => value,
Err(err) => {