diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-18 13:06:02 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-05-18 13:06:02 +0200 |
commit | 028329850e4a4fc9171518566ba7947d9e435f83 (patch) | |
tree | f46bb5f97cc58f82886a6e13729be1b7f00287fb /src/nvim/edit.c | |
parent | d7dd6007167eac919205404bc4e556237118a7a7 (diff) | |
download | rneovim-028329850e4a4fc9171518566ba7947d9e435f83.tar.gz rneovim-028329850e4a4fc9171518566ba7947d9e435f83.tar.bz2 rneovim-028329850e4a4fc9171518566ba7947d9e435f83.zip |
refactor: grid->rows and grid->cols
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index aa77c03b48..d7e82729a9 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -1632,7 +1632,7 @@ void edit_putchar(int c, bool highlight) pc_col = 0; pc_status = PC_STATUS_UNSET; if (curwin->w_p_rl) { - pc_col += curwin->w_grid.Columns - 1 - curwin->w_wcol; + pc_col += curwin->w_grid.cols - 1 - curwin->w_wcol; const int fix_col = grid_fix_col(&curwin->w_grid, pc_col, pc_row); if (fix_col != pc_col) { @@ -1759,7 +1759,7 @@ void display_dollar(colnr_T col) char_u *p = get_cursor_line_ptr(); curwin->w_cursor.col -= utf_head_off(p, p + col); curs_columns(curwin, false); // Recompute w_wrow and w_wcol - if (curwin->w_wcol < curwin->w_grid.Columns) { + if (curwin->w_wcol < curwin->w_grid.cols) { edit_putchar('$', false); dollar_vcol = curwin->w_virtcol; } |