Home
last modified time | relevance | path

Searched refs:cursor_col (Results 1 – 7 of 7) sorted by relevance

/vim-8.2.3635/src/
H A Dpopupmenu.c96 int cursor_col; in pum_display() local
220 cursor_col = curwin->w_wincol + curwin->w_width in pum_display()
224 cursor_col = curwin->w_wincol + curwin->w_wcol; in pum_display()
238 if (((cursor_col < Columns - p_pw in pum_display()
239 || cursor_col < Columns - max_width) in pum_display()
243 && (cursor_col > p_pw || cursor_col > max_width) in pum_display()
248 pum_col = cursor_col; in pum_display()
267 else if (((cursor_col > p_pw || cursor_col > max_width) in pum_display()
270 || (curwin->w_p_rl && (cursor_col < Columns - p_pw in pum_display()
271 || cursor_col < Columns - max_width) in pum_display()
[all …]
H A Dgui.c1166 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col) in gui_update_cursor()
1170 gui.cursor_col = gui.col; in gui_update_cursor()
1812 && gui.cursor_col >= col1 && gui.cursor_col <= col2) in gui_clear_block()
2656 && gui.cursor_col >= col in gui_outstr_nowrap()
2657 && gui.cursor_col < col + len) in gui_outstr_nowrap()
2687 gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col, in gui_undraw_cursor()
2688 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR); in gui_undraw_cursor()
2907 && gui.cursor_col >= gui.scroll_region_left in gui_delete_lines()
2908 && gui.cursor_col <= gui.scroll_region_right) in gui_delete_lines()
2933 && gui.cursor_col >= gui.scroll_region_left in gui_insert_lines()
[all …]
H A Dscreen.c3653 int cursor_col = 0; in screen_ins_lines() local
3760 cursor_col = wp->w_wincol; in screen_ins_lines()
3812 windgoto(cursor_row, cursor_col); in screen_ins_lines()
3831 windgoto(cursor_row, cursor_col); in screen_ins_lines()
3848 windgoto(off + i, cursor_col); in screen_ins_lines()
3884 int cursor_col = 0; in screen_del_lines() local
3975 cursor_col = wp->w_wincol; in screen_del_lines()
4043 windgoto(cursor_row, cursor_col); in screen_del_lines()
4049 windgoto(cursor_row, cursor_col); in screen_del_lines()
4060 windgoto(cursor_end - 1, cursor_col); in screen_del_lines()
[all …]
H A Dgui.h259 int cursor_col; // Physical cursor column in GUI display member
H A Ddrawscreen.c310 gui_cursor_col = gui.cursor_col; in update_screen()
/vim-8.2.3635/runtime/ftplugin/
H A Docaml.vim544 let cursor_col = col(".")
546 if line[cursor_col-1:cursor_col] == '[|'
548 return [cursor_line,lin2,cursor_col-1,col2+1]
549 elseif line[cursor_col-1] == '['
551 return [cursor_line,lin2,cursor_col-1,col2]
552 elseif line[cursor_col-1] == '('
554 return [cursor_line,lin2,cursor_col-1,col2]
555 elseif line[cursor_col-1] == '{'
557 return [cursor_line,lin2,cursor_col-1,col2]
/vim-8.2.3635/runtime/autoload/
H A Dphpcomplete.vim104 let cursor_col = pos[2]
105 let base = getline('.')[htmlbegin : cursor_col]