diff options
| author | Thore Weilbier <thore@weilbier.net> | 2020-04-26 06:47:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-25 21:47:48 -0700 |
| commit | 68511924d02af03812ae4b56aea6d94009f8096e (patch) | |
| tree | 8b62b116b341f80f064f81c397435246f70797c4 /runtime/doc | |
| parent | c5217c67df2e08b73ef3a8217b0d9c953467fde1 (diff) | |
| download | rneovim-68511924d02af03812ae4b56aea6d94009f8096e.tar.gz rneovim-68511924d02af03812ae4b56aea6d94009f8096e.tar.bz2 rneovim-68511924d02af03812ae4b56aea6d94009f8096e.zip | |
LSP: remove obsolete "peek definition" code #12178
The method with the name 'textDocument/peekDefinition' is not part of
the official language server protocol specification. Therefore no
language server can/will support this. Thereby all related code and
documentation as been removed.
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lsp.txt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index c7baec0491..e53853b1b1 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -752,9 +752,6 @@ npcall({fn}, {...}) *vim.lsp.buf.npcall()* ok_or_nil({status}, {...}) *vim.lsp.buf.ok_or_nil()* TODO: Documentation -peek_definition() *vim.lsp.buf.peek_definition()* - TODO: Documentation - *vim.lsp.buf.range_formatting()* range_formatting({options}, {start_pos}, {end_pos}) TODO: Documentation @@ -1053,10 +1050,6 @@ npcall({fn}, {...}) *vim.lsp.util.npcall()* ok_or_nil({status}, {...}) *vim.lsp.util.ok_or_nil()* TODO: Documentation - *vim.lsp.util.open_floating_peek_preview()* -open_floating_peek_preview({bufnr}, {start}, {finish}, {opts}) - TODO: Documentation - *vim.lsp.util.open_floating_preview()* open_floating_preview({contents}, {filetype}, {opts}) TODO: Documentation |