use std::fmt::Write; use helix_core::syntax::LanguageServerFeature; use crate::{ editor::GutterType, graphics::{Style, UnderlineStyle}, Document, Editor, Theme, View, }; fn count_digits(n: usize) -> usize { (usize::checked_ilog10(n).unwrap_or(0) + 1) as usize } pub type GutterFn<'doc> = Box Option