diff options
author | Gregory Anders <greg@gpanders.com> | 2021-08-03 11:38:41 -0600 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2021-08-03 11:39:46 -0600 |
commit | 2093b12b82cfe0d982c092141fd77695c98b59f3 (patch) | |
tree | 1d44db97d1456bb342a4bf77f16a7664561e29dc /src/nvim/api/vim.c | |
parent | 8baf7bce2b51e8d3d47b6c70ce054663d927639a (diff) | |
download | rneovim-2093b12b82cfe0d982c092141fd77695c98b59f3.tar.gz rneovim-2093b12b82cfe0d982c092141fd77695c98b59f3.tar.bz2 rneovim-2093b12b82cfe0d982c092141fd77695c98b59f3.zip |
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 |