diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-26 11:13:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-26 11:13:20 +0800 |
commit | 1635c9e75e21e07c4331cf983e14a11c7e09b119 (patch) | |
tree | 2acd3792ff17e17b9caa5c7b90e63710ffcba103 /src/nvim/plines.c | |
parent | b1cfb299df2ef412339f594173ed23c75c090c8a (diff) | |
download | rneovim-1635c9e75e21e07c4331cf983e14a11c7e09b119.tar.gz rneovim-1635c9e75e21e07c4331cf983e14a11c7e09b119.tar.bz2 rneovim-1635c9e75e21e07c4331cf983e14a11c7e09b119.zip |
refactor: move some structs out of buffer_defs.h (#24878)
Diffstat (limited to 'src/nvim/plines.c')
-rw-r--r-- | src/nvim/plines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/plines.c b/src/nvim/plines.c index be6bcd22ae..c95f362518 100644 --- a/src/nvim/plines.c +++ b/src/nvim/plines.c @@ -726,7 +726,7 @@ void getvcols(win_T *wp, pos_T *pos1, pos_T *pos2, colnr_T *left, colnr_T *right /// Functions calculating vertical size of text when displayed inside a window. /// Calls horizontal size functions defined above. -/// Check if there may be filler inlines anywhere in window "wp". +/// Check if there may be filler lines anywhere in window "wp". bool win_may_fill(win_T *wp) { return (wp->w_p_diff && diffopt_filler()) || wp->w_buffer->b_virt_line_blocks; |