pub fn read_vim_range<H: Host>(
ed: &mut Editor<View, H>,
start: (usize, usize),
end: (usize, usize),
kind: RangeKind,
) -> StringExpand description
Read the text in a vim-shaped range without mutating. Used by
Operator::Yank so we can pipe the same range translation as
cut_vim_range but skip the delete + inverse extraction.