Searched refs:row (Results 1 – 2 of 2) sorted by relevance
50 pub fn move_to_row(row: u16) -> io::Result<()> { in move_to_row()51 stdout().execute(MoveToRow(row)).unwrap().flush() in move_to_row()246 pub fn move_to_row(&mut self, row: u16) -> io::Result<()> { in move_to_row()248 CursorManager::move_to_row(row)?; in move_to_row()249 self.y = (size.rows - 1).min(row); in move_to_row()
35 let row = clear_y + ret as u16; in backspace() localVariable37 ui.cursor.move_to_row(row)?; in backspace()