diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-01-22 21:05:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 21:05:12 +0100 |
commit | 51f783f2faa2008bfb4136a15029a78efbc77715 (patch) | |
tree | 5b365b7d3f9f00fdc19f1ac5f30645a2afa66396 /src/nvim/extmark.c | |
parent | 012cfced9b5384fefa11d74346779b1725106d07 (diff) | |
parent | 9af2be292db3db7b28a6210263f719a6bbc4059f (diff) | |
download | rneovim-51f783f2faa2008bfb4136a15029a78efbc77715.tar.gz rneovim-51f783f2faa2008bfb4136a15029a78efbc77715.tar.bz2 rneovim-51f783f2faa2008bfb4136a15029a78efbc77715.zip |
Merge pull request #27011 from bfredl/metatree
perf(extmarks): add metadata for efficient filtering of special decorations
Diffstat (limited to 'src/nvim/extmark.c')
-rw-r--r-- | src/nvim/extmark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/extmark.c b/src/nvim/extmark.c index 4e4db93a7b..20a701d5a1 100644 --- a/src/nvim/extmark.c +++ b/src/nvim/extmark.c @@ -225,7 +225,7 @@ ExtmarkInfoArray extmark_get(buf_T *buf, uint32_t ns_id, int l_row, colnr_T l_co } else { // Find all the marks beginning with the start position marktree_itr_get_ext(buf->b_marktree, MTPos(l_row, l_col), - itr, reverse, false, NULL); + itr, reverse, false, NULL, NULL); } int order = reverse ? -1 : 1; |