diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2021-08-04 09:28:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-04 09:28:38 +0200 |
commit | 3d183596720aeab874ceb475af23e390bbe9b8a3 (patch) | |
tree | 4c9c1c645b6881941fe70e565c0a0a4a51380354 /src/nvim/api/vim.c | |
parent | 545e05d2fe98683494eb972e2661e348f2c0c290 (diff) | |
parent | 2093b12b82cfe0d982c092141fd77695c98b59f3 (diff) | |
download | rneovim-3d183596720aeab874ceb475af23e390bbe9b8a3.tar.gz rneovim-3d183596720aeab874ceb475af23e390bbe9b8a3.tar.bz2 rneovim-3d183596720aeab874ceb475af23e390bbe9b8a3.zip |
Merge pull request #15257 from gpanders/remove-set_virtual_text
refactor: remove remaining references to nvim_buf_set_virtual_text
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index bbcfe173c5..58ee53a408 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1557,7 +1557,7 @@ void nvim_set_current_tabpage(Tabpage tabpage, Error *err) /// Creates a new namespace, or gets an existing one. /// /// Namespaces are used for buffer highlights and virtual text, see -/// |nvim_buf_add_highlight()| and |nvim_buf_set_virtual_text()|. +/// |nvim_buf_add_highlight()| and |nvim_buf_set_extmark()|. /// /// Namespaces can be named or anonymous. If `name` matches an existing /// namespace, the associated id is returned. If `name` is an empty string |