diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-09-05 09:43:31 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-09-05 11:22:45 +0200 |
commit | 274248c35475c08e4a9824e0002e7d0caaae81f7 (patch) | |
tree | 56dcbf3204470dbc52fddf9183aa63e7058b46af /src/nvim/fold.h | |
parent | dce50312e1e9af81fb0e3b61d6e70bdf286fbffb (diff) | |
download | rneovim-274248c35475c08e4a9824e0002e7d0caaae81f7.tar.gz rneovim-274248c35475c08e4a9824e0002e7d0caaae81f7.tar.bz2 rneovim-274248c35475c08e4a9824e0002e7d0caaae81f7.zip |
refactor(screen): let win_line() always handle fillers after last line
Diffstat (limited to 'src/nvim/fold.h')
-rw-r--r-- | src/nvim/fold.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/fold.h b/src/nvim/fold.h index 95c4b0c1dc..37fab4da60 100644 --- a/src/nvim/fold.h +++ b/src/nvim/fold.h @@ -21,6 +21,8 @@ typedef struct foldinfo { long fi_lines; } foldinfo_T; +#define FOLDINFO_INIT { 0, 0, 0, 0 } + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "fold.h.generated.h" |