diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-12-17 13:43:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-17 13:43:46 +0100 |
commit | 1c4794944deb734b24b4a424c50b766a96e050dd (patch) | |
tree | e1ccf4ccce199b19e1b98d2c6b2cc179a1fa25c1 /src | |
parent | d65684f0c755a9341412423543b65ec872196440 (diff) | |
parent | ef91146efcece1b6d97152251e7137d301146189 (diff) | |
download | rneovim-1c4794944deb734b24b4a424c50b766a96e050dd.tar.gz rneovim-1c4794944deb734b24b4a424c50b766a96e050dd.tar.bz2 rneovim-1c4794944deb734b24b4a424c50b766a96e050dd.zip |
Merge pull request #21393 from folke/highlight_show
feat(lsp): add function to get semantic tokens at cursor
feat: `vim.inspect_pos()`, `vim.show_pos()` and `:Inspect[!]`
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/api/extmark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/extmark.c b/src/nvim/api/extmark.c index bdc0900dd9..f7c6b398d5 100644 --- a/src/nvim/api/extmark.c +++ b/src/nvim/api/extmark.c @@ -40,7 +40,7 @@ void api_extmark_free_all_mem(void) map_destroy(String, handle_T)(&namespace_ids); } -/// Creates a new \*namespace\* or gets an existing one. +/// Creates a new namespace or gets an existing one. \*namespace\* /// /// Namespaces are used for buffer highlights and virtual text, see /// |nvim_buf_add_highlight()| and |nvim_buf_set_extmark()|. |