diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-04-23 19:51:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-23 19:51:32 +0800 |
commit | a98cf154ed9a05f3a2bdfa6e354547c954d2f052 (patch) | |
tree | 9454df69215492ed28acb667022928e56344b0bf /src/nvim/buffer_defs.h | |
parent | 4e4914ab2e523f100c06fc5fb253f8625cc67232 (diff) | |
parent | 79ab277011e4668e2a6368be8ed908dc572af80f (diff) | |
download | rneovim-a98cf154ed9a05f3a2bdfa6e354547c954d2f052.tar.gz rneovim-a98cf154ed9a05f3a2bdfa6e354547c954d2f052.tar.bz2 rneovim-a98cf154ed9a05f3a2bdfa6e354547c954d2f052.zip |
Merge pull request #18226 from zeertzjq/vim-8.2.4805
vim-patch:8.2.{4805,4812}: CurSearch used for all matches in current line
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index c16a9c0282..0a1c92a9a4 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1020,7 +1020,6 @@ typedef struct { // match (may continue in next line) buf_T *buf; // the buffer to search for a match linenr_T lnum; // the line to search for a match - linenr_T lines; // number of lines starting from lnum int attr; // attributes to be used for a match int attr_cur; // attributes currently active in win_line() linenr_T first_lnum; // first lnum to search for multi-line pat |