diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-05-22 14:16:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-22 14:16:42 +0200 |
commit | 07883940b2294e0ab32fb58e6624d18d9dd1715a (patch) | |
tree | 2ce3b16ad7b6e96a4141a8502a3c667071ebf814 /runtime | |
parent | cb34d0ddd086141d6afcb9c48eae180abbeffecc (diff) | |
parent | 6eeb28845a930fbfe128dc3edc7969b0d9b2ed1c (diff) | |
download | rneovim-07883940b2294e0ab32fb58e6624d18d9dd1715a.tar.gz rneovim-07883940b2294e0ab32fb58e6624d18d9dd1715a.tar.bz2 rneovim-07883940b2294e0ab32fb58e6624d18d9dd1715a.zip |
Merge pull request #20130 from bfredl/inline
feat(ui): inline virtual text
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/api.txt | 2 | ||||
-rw-r--r-- | runtime/doc/news.txt | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index e7cda59906..f399f1ed25 100644 --- 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 index 9f6ab2ddd0..5690dbf3bc 100644 --- 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* |