neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 29da1a9cf0b44f2edcbff9e45af283f235360947
parent 584319cb03df44374e110d0c4b1d9b84c2d24aeb
Author: tom-anders <13141438+tom-anders@users.noreply.github.com>
Date:   Sat,  6 May 2023 15:14:00 +0200

docs: update api.txt and add inline virtual text to news.txt

Diffstat:
Mruntime/doc/api.txt | 2++
Mruntime/doc/news.txt | 2++
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt @@ -2608,6 +2608,8 @@ nvim_buf_set_extmark({buffer}, {ns_id}, {line}, {col}, {*opts}) • "overlay": display over the specified column, without shifting the underlying text. • "right_align": display right aligned in the window. + • "inline": display at the specified column, and shift the + buffer text to the right as needed • virt_text_win_col : position the virtual text at a fixed window column (starting from the first text column) diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt @@ -56,6 +56,8 @@ The following new APIs or features were added. • |Query:iter_matches()| now has the ability to set the maximum start depth for matches. +• Added inline virtual text support to |nvim_buf_set_extmark()|. + ============================================================================== CHANGED FEATURES *news-changed*