diff options
| author | Kevin Fleming <kvnflm@gmail.com> | 2020-12-09 19:21:16 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-09 11:21:16 +0100 |
| commit | fb1c08a86fc6c6e97ec9ae182db5806b94473104 (patch) | |
| tree | 2610861a6d958d80f9ac54cf0596d0f97cb5d661 /runtime/doc | |
| parent | 222a0452fa4deea3ab914b5f0dbb5c7a405c5033 (diff) | |
| download | rneovim-fb1c08a86fc6c6e97ec9ae182db5806b94473104.tar.gz rneovim-fb1c08a86fc6c6e97ec9ae182db5806b94473104.tar.bz2 rneovim-fb1c08a86fc6c6e97ec9ae182db5806b94473104.zip | |
doc: Fix incorrect LSP diagnostic-related helptags (#13388)
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lsp.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 3767b25adb..ea9072841c 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -247,7 +247,7 @@ For |lsp-notification|, each |lsp-handler| has this signature: > of a particular handler. For an example, see: - |vim.lsp.diagnostics.on_publish_diagnostics()| + |vim.lsp.diagnostic.on_publish_diagnostics()| To configure a particular |lsp-handler|, see: |lsp-handler-configuration| @@ -1123,7 +1123,7 @@ get_next({opts}) *vim.lsp.diagnostic.get_next()* Get the previous diagnostic closest to the cursor_position Parameters: ~ - {opts} table See |vim.lsp.diagnostics.goto_next()| + {opts} table See |vim.lsp.diagnostic.goto_next()| Return: ~ table Next diagnostic @@ -1133,7 +1133,7 @@ get_next_pos({opts}) *vim.lsp.diagnostic.get_next_pos()* current buffer. Parameters: ~ - {opts} table See |vim.lsp.diagnostics.goto_next()| + {opts} table See |vim.lsp.diagnostic.goto_next()| Return: ~ table Next diagnostic position @@ -1142,7 +1142,7 @@ get_prev({opts}) *vim.lsp.diagnostic.get_prev()* Get the previous diagnostic closest to the cursor_position Parameters: ~ - {opts} table See |vim.lsp.diagnostics.goto_next()| + {opts} table See |vim.lsp.diagnostic.goto_next()| Return: ~ table Previous diagnostic @@ -1152,7 +1152,7 @@ get_prev_pos({opts}) *vim.lsp.diagnostic.get_prev_pos()* current buffer. Parameters: ~ - {opts} table See |vim.lsp.diagnostics.goto_next()| + {opts} table See |vim.lsp.diagnostic.goto_next()| Return: ~ table Previous diagnostic position @@ -1215,7 +1215,7 @@ goto_prev({opts}) *vim.lsp.diagnostic.goto_prev()* Move to the previous diagnostic Parameters: ~ - {opts} table See |vim.lsp.diagnostics.goto_next()| + {opts} table See |vim.lsp.diagnostic.goto_next()| *vim.lsp.diagnostic.on_publish_diagnostics()* on_publish_diagnostics({_}, {_}, {params}, {client_id}, {_}, {config}) |