diff options
Diffstat (limited to 'src/nvim/plines.c')
-rw-r--r-- | src/nvim/plines.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/plines.c b/src/nvim/plines.c index e084d107a0..4d1cf80e77 100644 --- a/src/nvim/plines.c +++ b/src/nvim/plines.c @@ -75,11 +75,19 @@ int linetabsize_col(int startvcol, char *s) /// Return the number of cells line "lnum" of window "wp" will take on the /// screen, taking into account the size of a tab and inline virtual text. +/// Doesn't count the size of 'listchars' "eol". int linetabsize(win_T *wp, linenr_T lnum) { return win_linetabsize(wp, lnum, ml_get_buf(wp->w_buffer, lnum), MAXCOL); } +/// Like linetabsize(), but counts the size of 'listchars' "eol". +int linetabsize_eol(win_T *wp, linenr_T lnum) +{ + return linetabsize(wp, lnum) + + ((wp->w_p_list && wp->w_p_lcs_chars.eol != NUL) ? 1 : 0); +} + static const uint32_t inline_filter[4] = {[kMTMetaInline] = kMTFilterSelect }; /// Prepare the structure passed to charsize functions. |