Lines Matching refs:w_leftcol
498 wp->w_valid_leftcol = wp->w_leftcol; in check_cursor_moved()
501 || wp->w_leftcol != wp->w_valid_leftcol in check_cursor_moved()
506 wp->w_valid_leftcol = wp->w_leftcol; in check_cursor_moved()
880 if (col > (int)curwin->w_leftcol) in validate_cursor_col()
881 col -= curwin->w_leftcol; in validate_cursor_col()
978 startcol = curwin->w_virtcol = endcol = curwin->w_leftcol; in curs_columns()
1051 off_left = (int)startcol - (int)curwin->w_leftcol - siso; in curs_columns()
1052 off_right = (int)endcol - (int)(curwin->w_leftcol + curwin->w_width in curs_columns()
1070 new_leftcol = curwin->w_leftcol - diff; in curs_columns()
1072 new_leftcol = curwin->w_leftcol + diff; in curs_columns()
1076 if (new_leftcol != (int)curwin->w_leftcol) in curs_columns()
1078 curwin->w_leftcol = new_leftcol; in curs_columns()
1083 curwin->w_wcol -= curwin->w_leftcol; in curs_columns()
1085 else if (curwin->w_wcol > (int)curwin->w_leftcol) in curs_columns()
1086 curwin->w_wcol -= curwin->w_leftcol; in curs_columns()
1213 curwin->w_valid_leftcol = curwin->w_leftcol; in curs_columns()
1261 col -= wp->w_leftcol; in textpos2screenpos()