pub type OnLinesArgs = (String, Buffer, u32, usize, usize, usize, usize, Option<usize>, Option<usize>);Expand description
Arguments passed to the callback registered to
on_lines. The (a, b, c, d, e, f, g, h, i) tuple represents:
a: the string literal"lines";b: theBufferthat triggered the callback;c: the value of the buffer-localb:changedtickvariable;d: first row that changed (0-indexed);e: last row that was changed;f: last row in the updated range;g: byte count of previous contents;h: deleted UTF-32 codepoints (ifutf_sizeswastrue);i: deleted UTF-16 codeunits (ifutf_sizeswastrue);