diff options
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lsp.txt | 1 | ||||
| -rw-r--r-- | runtime/doc/lua.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 31b1c412c7..aa56f8bbae 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -1403,6 +1403,7 @@ rename({new_name}, {options}) *vim.lsp.buf.rename()* predicate are included. • {name}? (`string`) Restrict clients used for rename to ones where client.name matches this field. + • {bufnr}? (`integer`) (default: current buffer) signature_help() *vim.lsp.buf.signature_help()* Displays signature information about the symbol under the cursor in a diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 189c26bb7a..d187caad04 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -3774,7 +3774,7 @@ vim.version.range({spec}) *vim.version.range()* • {spec} (`string`) Version range "spec" Return: ~ - (`table`) A table with the following fields: + (`table?`) A table with the following fields: • {from} (`vim.Version`) • {to}? (`vim.Version`) • {has} (`fun(self: vim.VersionRangeversion: string|vim.Version)`) |