Home
last modified time | relevance | path

Searched refs:goto_line (Results 1 – 5 of 5) sorted by relevance

/Held/src/utils/ui/mode/
H A Dcommon.rs72 let new_y = ui.buffer.goto_line(line as usize); in move_to_line()
143 let new_y = ui.buffer.goto_line(offset + n); in move_to_nlines_of_screen()
H A Dmode.rs159 let new_y = ui.buffer.goto_line(line_number); in jump_to_next_flag()
187 let new_y = ui.buffer.goto_line(idx.unwrap()); in jump_to_previous_flag()
394 let new_y = ui.buffer.goto_line(offset + n); in move_to_nlines_of_screen()
561 let new_y = ui.buffer.goto_line(line_count as usize - 1); in input_data()
H A Dnormal.rs213 let new_y = ui.buffer.goto_line(old_abs_y as usize + exec_count); in exec_j_cmd()
252 let new_y = ui.buffer.goto_line(to_line); in exec_k_cmd()
/Held/src/config/
H A Dlastline_cmd.rs147 let y = ui.buffer.goto_line(y as usize); in goto()
/Held/src/utils/
H A Dbuffer.rs333 pub fn goto_line(&self, mut line_idx: usize) -> u16 { in goto_line() method