diff options
author | Matthieu Coudron <mattator@gmail.com> | 2020-09-24 21:48:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 21:48:53 +0200 |
commit | f1fbb9e9ca26a7111dc384951c600bf4dc4ebbfb (patch) | |
tree | b5ed0222bce59f0060692f804a530ed67276a366 /src/nvim/fold.h | |
parent | b9ceac4650a7d7b731828a4fb82b92d01e88752b (diff) | |
parent | a958039f0ad7cd4f6a139fde18795c88c623a30e (diff) | |
download | rneovim-f1fbb9e9ca26a7111dc384951c600bf4dc4ebbfb.tar.gz rneovim-f1fbb9e9ca26a7111dc384951c600bf4dc4ebbfb.tar.bz2 rneovim-f1fbb9e9ca26a7111dc384951c600bf4dc4ebbfb.zip |
Merge pull request #12515 from teto/remove-foldline-final
screen.c: remove fold_line
Diffstat (limited to 'src/nvim/fold.h')
-rw-r--r-- | src/nvim/fold.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/fold.h b/src/nvim/fold.h index f35b328fb1..95c4b0c1dc 100644 --- a/src/nvim/fold.h +++ b/src/nvim/fold.h @@ -18,6 +18,7 @@ typedef struct foldinfo { other fields are invalid */ int fi_low_level; /* lowest fold level that starts in the same line */ + long fi_lines; } foldinfo_T; |