diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-12-31 08:03:06 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-12-31 15:39:17 -0800 |
commit | ac6ebfcc1db8daf30533c42d5c4246bb95ec3d85 (patch) | |
tree | 15d78f293ae0c86cbc2764265316cd71a6506e53 /runtime/doc | |
parent | 8b841196504f96a5c14126667fb4f4a0769914dd (diff) | |
download | rneovim-ac6ebfcc1db8daf30533c42d5c4246bb95ec3d85.tar.gz rneovim-ac6ebfcc1db8daf30533c42d5c4246bb95ec3d85.tar.bz2 rneovim-ac6ebfcc1db8daf30533c42d5c4246bb95ec3d85.zip |
LSP: eliminate lsp.print_debug_info…()
Reduce API surface. We should not add functions unless they are really
needed. Users should be nudged to use vim.inspect() directly.
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/lsp.txt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 37ede277eb..70a3110042 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -320,9 +320,6 @@ buf_notify({bufnr}, {method}, {params}) *vim.lsp.buf_notify()* Return: ~ nil -buf_print_debug_info({bufnr}) *vim.lsp.buf_print_debug_info()* - TODO: Documentation - *vim.lsp.buf_request()* buf_request({bufnr}, {method}, {params}, {callback}) Sends an async request for all active clients attached to the @@ -479,9 +476,6 @@ once({fn}) *vim.lsp.once()* optional_validator({fn}) *vim.lsp.optional_validator()* TODO: Documentation -print_debug_info() *vim.lsp.print_debug_info()* - TODO: Documentation - request({method}, {params}, {callback}) *vim.lsp.request()* TODO: Documentation |