Home
last modified time | relevance | path

Searched refs:LTOREQ_POS (Results 1 – 9 of 9) sorted by relevance

/vim-8.2.3635/src/
H A Dmacros.h38 #define LTOREQ_POS(a, b) (LT_POS(a, b) || EQUAL_POS(a, b)) macro
H A Dtextobject.c835 if (*p_sel == 'e' && inclusive && LTOREQ_POS(VIsual, curwin->w_cursor)) in current_word()
1178 else if (LTOREQ_POS(start_pos, curwin->w_cursor)) in current_block()
H A Dsearch.c3077 if (forward && LTOREQ_POS(VIsual, curwin->w_cursor)) in current_search()
3079 else if (!forward && LTOREQ_POS(curwin->w_cursor, VIsual)) in current_search()
3286 if (LTOREQ_POS(lastpos, p)) in update_search_stat()
H A Dcharset.c1346 && (*p_sel == 'e' || LTOREQ_POS(*pos, VIsual))) in getvcol()
H A Dops.c1160 while (LTOREQ_POS(curwin->w_cursor, oap->end)) in op_replace()
1302 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1) in op_tilde()
H A Ddrawline.c542 if (LTOREQ_POS(curwin->w_cursor, VIsual)) in win_line()
H A Ddrawscreen.c1285 if (LTOREQ_POS(curwin->w_cursor, VIsual)) in fold_line()
H A Dfold.c1062 if (LTOREQ_POS(VIsual, curwin->w_cursor)) in foldAdjustVisual()
/vim-8.2.3635/runtime/doc/
H A Dversion8.txt46654 Solution: Use LT_POS() instead of LTOREQ_POS(). (closes #6189)