Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dmove.c495 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL in check_cursor_moved()
504 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL); in check_cursor_moved()
576 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL in changed_cline_bef_curs_win()
647 return ((curwin->w_valid & (VALID_WROW|VALID_WCOL)) == in cursor_valid()
648 (VALID_WROW|VALID_WCOL)); in cursor_valid()
659 if ((curwin->w_valid & (VALID_WCOL|VALID_WROW)) != (VALID_WCOL|VALID_WROW)) in validate_cursor()
1998 curwin->w_valid &= ~(VALID_WROW|VALID_CROW); in scroll_cursor_bot()
2356 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW); in cursor_correct()
2437 curwin->w_valid &= ~(VALID_WROW|VALID_CROW); in onepage()
2745 curwin->w_valid &= ~(VALID_CROW|VALID_WROW); in halfpage()
[all …]
H A Dmouse.c1886 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP); in jump_to_mouse()
1927 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP); in jump_to_mouse()
H A Ddrawscreen.c2694 if (old_wcol != new_wcol && (wp->w_valid & (VALID_WCOL|VALID_WROW)) in win_update()
2695 != (VALID_WCOL|VALID_WROW)) in win_update()
H A Dvim.h627 #define VALID_WROW 0x01 // w_wrow (window row) is valid macro
H A Ddrawline.c2518 curwin->w_valid |= VALID_WCOL|VALID_WROW|VALID_VIRTCOL; in win_line()
H A Dterminal.c2236 wp->w_valid |= (VALID_WCOL|VALID_WROW); in position_cursor()
/vim-8.2.3635/runtime/doc/
H A Dversion8.txt1784 Solution: Check the VALID_CROW flag instead of VALID_WROW.