diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-02 10:00:34 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-05-02 12:04:48 +0800 |
commit | 03e8b5fc91f9b4b0535f79a8d725e1551aec6795 (patch) | |
tree | 2003a93cb6c4ff4962e621999095a64913dcb72e /src | |
parent | 26cc946226d96bf6b474d850b961e1060346c96f (diff) | |
download | rneovim-03e8b5fc91f9b4b0535f79a8d725e1551aec6795.tar.gz rneovim-03e8b5fc91f9b4b0535f79a8d725e1551aec6795.tar.bz2 rneovim-03e8b5fc91f9b4b0535f79a8d725e1551aec6795.zip |
fix(float): make bufpos work properly with resized parent grid
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/move.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/move.c b/src/nvim/move.c index b749d07d15..58f8b1c893 100644 --- a/src/nvim/move.c +++ b/src/nvim/move.c @@ -966,18 +966,18 @@ void textpos2screenpos(win_T *wp, pos_T *pos, int *rowp, int *scolp, int *ccolp, // similar to what is done in validate_cursor_col() colnr_T col = scol; col += off; - int width = wp->w_width - off + win_col_off2(wp); + int width = wp->w_width_inner - off + win_col_off2(wp); // long line wrapping, adjust row - if (wp->w_p_wrap && col >= (colnr_T)wp->w_width && width > 0) { + if (wp->w_p_wrap && col >= (colnr_T)wp->w_width_inner && width > 0) { // use same formula as what is used in curs_columns() - rowoff = visible_row ? ((col - wp->w_width) / width + 1) : 0; + rowoff = visible_row ? ((col - wp->w_width_inner) / width + 1) : 0; col -= rowoff * width; } col -= wp->w_leftcol; - if (col >= 0 && col < wp->w_width && row + rowoff <= wp->w_height) { + if (col >= 0 && col < wp->w_width_inner && row + rowoff <= wp->w_height_inner) { coloff = col - scol + (local ? 0 : wp->w_wincol + wp->w_wincol_off) + 1; row += local ? 0 : wp->w_winrow + wp->w_winrow_off; } else { |