Searched refs:Insstart (Results 1 – 8 of 8) sorted by relevance
241 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 …]
1356 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()
136 || curwin->w_cursor.lnum != Insstart.lnum in internal_format()137 || curwin->w_cursor.col >= Insstart.col) in internal_format()
1645 && (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()
2126 if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed) in open_line()
972 EXTERN pos_T Insstart; // This is where the latest variable
12412 Solution: Do not use Insstart when intentionally formatting.
2743 Solution: Also decrement Insstart.lnum.4282 Solution: Use Insstart instead of Insstart_orig. (Christian Brabandt)