diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-11-30 09:28:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 09:28:50 +0100 |
commit | f5fb79733e30b6444e9637e9a1aa4bfcb2050ab5 (patch) | |
tree | 5800b5c5c129fa2aacc5be1a74659b1631a4559e /runtime/lua/vim/lsp/buf.lua | |
parent | fff8827908494a9c4bd5de10c409189929b3db56 (diff) | |
parent | d0fbbea62ae35928efcabb224932bb990d7cab29 (diff) | |
download | rneovim-f5fb79733e30b6444e9637e9a1aa4bfcb2050ab5.tar.gz rneovim-f5fb79733e30b6444e9637e9a1aa4bfcb2050ab5.tar.bz2 rneovim-f5fb79733e30b6444e9637e9a1aa4bfcb2050ab5.zip |
Merge pull request #16460 from dundargoc/chore/typos
chore: fix typos
Diffstat (limited to 'runtime/lua/vim/lsp/buf.lua')
-rw-r--r-- | runtime/lua/vim/lsp/buf.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/lua/vim/lsp/buf.lua b/runtime/lua/vim/lsp/buf.lua index be9bd9d223..f02ebfb9dc 100644 --- a/runtime/lua/vim/lsp/buf.lua +++ b/runtime/lua/vim/lsp/buf.lua @@ -165,7 +165,7 @@ end --- saved. {timeout_ms} is passed on to |vim.lsp.buf_request_sync()|. Example: --- --- <pre> ---- vim.api.nvim_command[[autocmd BufWritePre <buffer> lua vim.lsp.buf.formatting_sync()]] +--- autocmd BufWritePre <buffer> lua vim.lsp.buf.formatting_sync() --- </pre> --- ---@param options Table with valid `FormattingOptions` entries @@ -263,6 +263,7 @@ function M.rename(new_name) request('textDocument/rename', params) end + ---@private local function prepare_rename(err, result) if err == nil and result == nil then vim.notify('nothing to rename', vim.log.levels.INFO) @@ -446,9 +447,9 @@ end --- by events such as `CursorHold`, eg: --- --- <pre> ---- vim.api.nvim_command [[autocmd CursorHold <buffer> lua vim.lsp.buf.document_highlight()]] ---- vim.api.nvim_command [[autocmd CursorHoldI <buffer> lua vim.lsp.buf.document_highlight()]] ---- vim.api.nvim_command [[autocmd CursorMoved <buffer> lua vim.lsp.buf.clear_references()]] +--- autocmd CursorHold <buffer> lua vim.lsp.buf.document_highlight() +--- autocmd CursorHoldI <buffer> lua vim.lsp.buf.document_highlight() +--- autocmd CursorMoved <buffer> lua vim.lsp.buf.clear_references() --- </pre> --- --- Note: Usage of |vim.lsp.buf.document_highlight()| requires the following highlight groups |