From 8eb0ac412399bf761b599252393bb14aa7f3460c Mon Sep 17 00:00:00 2001 From: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Tue, 28 Jan 2025 20:57:46 +0000 Subject: [PATCH] feat: rename file type to `.multicursor` --- helix-term/src/ui/markdown.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/src/ui/markdown.rs b/helix-term/src/ui/markdown.rs index 6ab35c4c7..27b2a5dfc 100644 --- a/helix-term/src/ui/markdown.rs +++ b/helix-term/src/ui/markdown.rs @@ -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) => {