Home
last modified time | relevance | path

Searched refs:Insstart (Results 1 – 8 of 8) sorted by relevance

/vim-8.2.3635/src/
H A Dedit.c241 Insstart = curwin->w_cursor; in edit()
243 Insstart.col = 0; in edit()
451 Insstart_orig = Insstart; in edit()
1714 Insstart.lnum = lnum; in set_insstart()
1715 Insstart.col = col; in set_insstart()
2971 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0); in echeck_abbr()
4038 lnum = Insstart.lnum; in ins_bs()
4048 --Insstart.lnum; in ins_bs()
4049 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum)); in ins_bs()
5002 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col) in ins_tab()
[all …]
H A Dindent.c1356 if (curwin->w_cursor.lnum == Insstart.lnum && Insstart.col != 0) in change_indent()
1358 if ((int)Insstart.col <= insstart_less) in change_indent()
1359 Insstart.col = 0; in change_indent()
1361 Insstart.col -= insstart_less; in change_indent()
H A Dtextformat.c136 || curwin->w_cursor.lnum != Insstart.lnum in internal_format()
137 || curwin->w_cursor.col >= Insstart.col) in internal_format()
H A Dops.c1645 && (start_insert.lnum == Insstart.lnum in op_insert()
1646 && start_insert.col > Insstart.col)) in op_insert()
1648 offset = (start_insert.col - Insstart.col); in op_insert()
H A Dchange.c2126 if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed) in open_line()
H A Dglobals.h972 EXTERN pos_T Insstart; // This is where the latest variable
/vim-8.2.3635/runtime/doc/
H A Dversion7.txt12412 Solution: Do not use Insstart when intentionally formatting.
H A Dversion8.txt2743 Solution: Also decrement Insstart.lnum.
4282 Solution: Use Insstart instead of Insstart_orig. (Christian Brabandt)