Searched refs:col (Results 1 – 2 of 2) sorted by relevance
45 pub fn move_to_columu(col: u16) -> io::Result<()> { in move_to_columu()46 stdout().execute(MoveToColumn(col)).unwrap().flush() in move_to_columu()236 pub fn move_to_columu(&mut self, mut col: u16) -> io::Result<()> { in move_to_columu()238 col += self.line_prefix_width; in move_to_columu()241 CursorManager::move_to_columu(col)?; in move_to_columu()242 self.x = (size.cols - 1).min(col); in move_to_columu()
595 let col = ui.cursor.x(); in enter() localVariable602 ui.buffer.input_enter(col, line_idx); in enter()