diff options
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index e0119d2add..e59539f900 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -706,9 +706,10 @@ struct file_buffer { struct { int size; // last calculated number of sign columns - bool valid; // calculated sign columns is valid + int max; // maximum value size is valid for. linenr_T sentinel; // a line number which is holding up the signcolumn - int max; // Maximum value size is valid for. + linenr_T invalid_top; // first invalid line number that needs to be checked + linenr_T invalid_bot; // last invalid line number that needs to be checked } b_signcols; Terminal *terminal; // Terminal instance associated with the buffer |