Skip to main content

vtcode_ghostty_core/
cursor.rs

1/// Cursor position on the terminal grid.
2#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
3pub struct Cursor {
4    pub col: usize,
5    pub row: usize,
6}