mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 19:06:31 +00:00
move/remove W_* macros
move W_ENDCOL to screen.c remove the rest of the W_* macros
This commit is contained in:
@@ -2022,7 +2022,7 @@ showmatch (
|
||||
if (!curwin->w_p_wrap)
|
||||
getvcol(curwin, lpos, NULL, &vcol, NULL);
|
||||
if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol
|
||||
&& vcol < curwin->w_leftcol + W_WIDTH(curwin))) {
|
||||
&& vcol < curwin->w_leftcol + curwin->w_width)) {
|
||||
mpos = *lpos; /* save the pos, update_screen() may change it */
|
||||
save_cursor = curwin->w_cursor;
|
||||
save_so = p_so;
|
||||
|
Reference in New Issue
Block a user