diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-06-22 20:39:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 20:39:35 +0800 |
commit | f0884f21fa0cccc576f00bc18895cc80ba906031 (patch) | |
tree | c7dba1000447063288add565c94ac786aef6b274 /runtime/doc/api.txt | |
parent | 134b9ec483616e20d96c26fdb7ef3f3e912108a8 (diff) | |
download | rneovim-f0884f21fa0cccc576f00bc18895cc80ba906031.tar.gz rneovim-f0884f21fa0cccc576f00bc18895cc80ba906031.tar.bz2 rneovim-f0884f21fa0cccc576f00bc18895cc80ba906031.zip |
feat(extmarks): support hl_mode "combine" for inline virt_text (#24099)
Diffstat (limited to 'runtime/doc/api.txt')
-rw-r--r-- | runtime/doc/api.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index bd8bce9737..8c79279361 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -2630,9 +2630,10 @@ nvim_buf_set_extmark({buffer}, {ns_id}, {line}, {col}, {*opts}) highlights of the text. Currently only affects virt_text highlights, but might affect `hl_group` in later versions. • "replace": only show the virt_text color. This is the - default - • "combine": combine with background text color - • "blend": blend with background text color. + default. + • "combine": combine with background text color. + • "blend": blend with background text color. Not supported + for "inline" virt_text. • virt_lines : virtual lines to add next to this mark This should be an array over lines, where each line in turn is |