diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-01 17:57:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-01 17:57:01 +0800 |
commit | f4300985d3212887ef27d703ba8cb4230813e095 (patch) | |
tree | 84e7780c8d66dbad94673911b704509e22155a07 /src/nvim/screen.c | |
parent | a562b5771ea91becd0a469378ec852feaf50d2d0 (diff) | |
parent | be15ac06badbea6b11390ad7d9c2ddd4aea73480 (diff) | |
download | rneovim-f4300985d3212887ef27d703ba8cb4230813e095.tar.gz rneovim-f4300985d3212887ef27d703ba8cb4230813e095.tar.bz2 rneovim-f4300985d3212887ef27d703ba8cb4230813e095.zip |
Merge pull request #17113 from zeertzjq/vim-8.2.2569
feat(statusline): support multibyte fillchar
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index af023d6785..56a658ec6d 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -1981,7 +1981,7 @@ static size_t fill_foldcolumn(char_u *p, win_T *wp, foldinfo_T foldinfo, linenr_ level = foldinfo.fi_level; // If the column is too narrow, we start at the lowest level that - // fits and use numbers to indicated the depth. + // fits and use numbers to indicate the depth. first_level = level - fdc - closed + 1; if (first_level < 1) { first_level = 1; |