use std::fmt::Write; use crate::{ editor::GutterType, graphics::{Style, UnderlineStyle}, Document, Editor, Theme, View, }; fn count_digits(n: usize) -> usize { // TODO: use checked_log10 when MSRV reaches 1.67 std::iter::successors(Some(n), |&n| (n >= 10).then_some(n / 10)).count() } pub type GutterFn<'doc> = Box Option