diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-11-08 12:17:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-08 12:17:25 +0100 |
commit | 1b0fd377aba3b4d076e4dbfb5adb96866a4982d1 (patch) | |
tree | 460bbeada52d9b7bd3a1ad194224cec461f7f055 /src/nvim/api/deprecated.c | |
parent | 4c8fdc018b428c4b5f35215a1189d2cd55cd5888 (diff) | |
parent | 4e6f559b8c5f77924fdbe2e5abd9c6aa8efad13f (diff) | |
download | rneovim-1b0fd377aba3b4d076e4dbfb5adb96866a4982d1.tar.gz rneovim-1b0fd377aba3b4d076e4dbfb5adb96866a4982d1.tar.bz2 rneovim-1b0fd377aba3b4d076e4dbfb5adb96866a4982d1.zip |
Merge pull request #25767 from luukvbaal/signdel
feat(extmarks): add 'invalidate' property
Diffstat (limited to 'src/nvim/api/deprecated.c')
-rw-r--r-- | src/nvim/api/deprecated.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/deprecated.c b/src/nvim/api/deprecated.c index 906edb7b44..8edb6dbd4f 100644 --- a/src/nvim/api/deprecated.c +++ b/src/nvim/api/deprecated.c @@ -172,7 +172,7 @@ Integer nvim_buf_set_virtual_text(Buffer buffer, Integer src_id, Integer line, A decor.virt_text_width = width; decor.priority = 0; - extmark_set(buf, ns_id, NULL, (int)line, 0, -1, -1, &decor, true, false, false, NULL); + extmark_set(buf, ns_id, NULL, (int)line, 0, -1, -1, &decor, true, false, false, false, NULL); return src_id; } |