aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/marktree.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2024-02-21 19:21:13 +0100
committerGitHub <noreply@github.com>2024-02-21 19:21:13 +0100
commitba0370b1d718d473d0ef51c35d88b98ba220082b (patch)
tree9c2c79ae6dc17feb4c63687069cb1b9805fcc1bb /src/nvim/marktree.c
parent6d8bbfe19df2175637a1e47ac1aafb0e96e35b38 (diff)
parent1c032ad703a19cd5c8498ee95f9352df87a91139 (diff)
downloadrneovim-ba0370b1d718d473d0ef51c35d88b98ba220082b.tar.gz
rneovim-ba0370b1d718d473d0ef51c35d88b98ba220082b.tar.bz2
rneovim-ba0370b1d718d473d0ef51c35d88b98ba220082b.zip
Merge pull request #27361 from altermo/buf-win-local-extmarks
feat(extmark): window scoped namespace
Diffstat (limited to 'src/nvim/marktree.c')
-rw-r--r--src/nvim/marktree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/marktree.c b/src/nvim/marktree.c
index 1da75eb2af..dcb839d07f 100644
--- a/src/nvim/marktree.c
+++ b/src/nvim/marktree.c
@@ -2286,7 +2286,7 @@ static void marktree_itr_fix_pos(MarkTree *b, MarkTreeIter *itr)
void marktree_put_test(MarkTree *b, uint32_t ns, uint32_t id, int row, int col, bool right_gravity,
int end_row, int end_col, bool end_right, bool meta_inline)
{
- uint16_t flags = mt_flags(right_gravity, false, false, false);
+ uint16_t flags = mt_flags(right_gravity, false, false, false, false);
// The specific choice is irrelevant here, we pick one counted decor
// type to test the counting and filtering logic.
flags |= meta_inline ? MT_FLAG_DECOR_VIRT_TEXT_INLINE : 0;