diff options
| author | Lewis Russell <lewis6991@gmail.com> | 2024-03-06 12:15:25 +0000 |
|---|---|---|
| committer | Lewis Russell <me@lewisr.dev> | 2024-03-06 16:03:33 +0000 |
| commit | 85b13751a5fc28fadbe74d72982325ca27b4c775 (patch) | |
| tree | 0690fe4c552acfd03a69466b85bd7eda50509474 /runtime/doc | |
| parent | 3c572a31a3bb7009b4ad8eac56da1458acae3b75 (diff) | |
| download | rneovim-85b13751a5fc28fadbe74d72982325ca27b4c775.tar.gz rneovim-85b13751a5fc28fadbe74d72982325ca27b4c775.tar.bz2 rneovim-85b13751a5fc28fadbe74d72982325ca27b4c775.zip | |
refactor(types): more fixes (2)
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)`) |