aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorGregory Anders <greg@gpanders.com>2021-11-29 22:13:31 -0700
committerDundar Göc <gocdundar@gmail.com>2021-11-30 09:03:41 +0100
commitd0fbbea62ae35928efcabb224932bb990d7cab29 (patch)
tree9e072452a50a132142cd54a57dc50a12ef9fad1f /runtime/doc
parent5a24c2c83d76432e38f40d31db4c0a8fdd4232cf (diff)
downloadrneovim-d0fbbea62ae35928efcabb224932bb990d7cab29.tar.gz
rneovim-d0fbbea62ae35928efcabb224932bb990d7cab29.tar.bz2
rneovim-d0fbbea62ae35928efcabb224932bb990d7cab29.zip
docs(lsp): do not use nvim_command for Vimscript examples
The examples are relevant and applicable for both Lua and Vimscript configurations and the `vim.api.nvim_command` prefixes just add noise that doesn't contribute to the example.
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/lsp.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt
index a9669e9e01..e71b869413 100644
--- a/runtime/doc/lsp.txt
+++ b/runtime/doc/lsp.txt
@@ -991,9 +991,9 @@ document_highlight() *vim.lsp.buf.document_highlight()*
triggered by a key mapping or by events such as `CursorHold` ,
eg:
>
- 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()
<
Note: Usage of |vim.lsp.buf.document_highlight()| requires the
@@ -1061,7 +1061,7 @@ formatting_sync({options}, {timeout_ms})
|vim.lsp.buf_request_sync()|. Example:
>
- vim.api.nvim_command[[autocmd BufWritePre <buffer> lua vim.lsp.buf.formatting_sync()]]
+ autocmd BufWritePre <buffer> lua vim.lsp.buf.formatting_sync()
<
Parameters: ~