diff options
| author | Manuel <dev+git@manuelsbrain.de> | 2022-06-12 16:06:20 +0200 |
|---|---|---|
| committer | Simon Hauser <simon.hauser@helsinki-systems.de> | 2022-06-30 14:01:51 +0200 |
| commit | 3a72cc89024120d09f32d70689cc9cbe367fc2b4 (patch) | |
| tree | 8b51ae0442809616df1f26a16b4247d8771ef02d /doc | |
| parent | ffcc2221d63aa89665e468be1dd8cd8e40e5f581 (diff) | |
feat(builtin.lsp): implement builtin handlers for lsp.(incoming|outgoing)_calls (#1484)
Fixes #863
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/telescope.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/telescope.txt b/doc/telescope.txt index ce171f1..78cc7e4 100644 --- a/doc/telescope.txt +++ b/doc/telescope.txt @@ -1464,6 +1464,32 @@ builtin.lsp_references({opts}) *telescope.builtin.lsp_references()* section (default: 30) +builtin.lsp_incoming_calls({opts}) *telescope.builtin.lsp_incoming_calls()* + Lists LSP incoming calls for word under the cursor, jumps to reference on + `<cr>` + + + Parameters: ~ + {opts} (table) options to pass to the picker + + Options: ~ + {show_line} (boolean) show results text (default: true) + {trim_text} (boolean) trim results text (default: false) + + +builtin.lsp_outgoing_calls({opts}) *telescope.builtin.lsp_outgoing_calls()* + Lists LSP outgoing calls for word under the cursor, jumps to reference on + `<cr>` + + + Parameters: ~ + {opts} (table) options to pass to the picker + + Options: ~ + {show_line} (boolean) show results text (default: true) + {trim_text} (boolean) trim results text (default: false) + + builtin.lsp_definitions({opts}) *telescope.builtin.lsp_definitions()* Goto the definition of the word under the cursor, if there's only one, otherwise show all options in Telescope |
