diff options
author | Mathias Fußenegger <mfussenegger@users.noreply.github.com> | 2021-09-01 13:29:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-01 13:29:11 +0200 |
commit | 684550ff38b036fd7f3b2ac75121cfd0b3b9c9ca (patch) | |
tree | 508057cc2cca8378538e28094a7b4f11954b0af7 /runtime/doc | |
parent | 284199bc4bf36bb74c481da9c8b2a43c1bbbeb51 (diff) | |
download | rneovim-684550ff38b036fd7f3b2ac75121cfd0b3b9c9ca.tar.gz rneovim-684550ff38b036fd7f3b2ac75121cfd0b3b9c9ca.tar.bz2 rneovim-684550ff38b036fd7f3b2ac75121cfd0b3b9c9ca.zip |
docs(lsp): document codelens.get bufnr parameter (#15540)
Alternative to https://github.com/neovim/neovim/pull/15224
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/lsp.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 69e509c187..cc03188f13 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -1725,6 +1725,10 @@ display({lenses}, {bufnr}, {client_id}) *vim.lsp.codelens.display()* get({bufnr}) *vim.lsp.codelens.get()* Return all lenses for the given buffer + Parameters: ~ + {bufnr} number Buffer number. 0 can be used for the + current buffer. + Return: ~ table ( `CodeLens[]` ) |