From ac6ebfcc1db8daf30533c42d5c4246bb95ec3d85 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Tue, 31 Dec 2019 08:03:06 -0800 Subject: LSP: eliminate lsp.print_debug_info…() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reduce API surface. We should not add functions unless they are really needed. Users should be nudged to use vim.inspect() directly. --- runtime/doc/lsp.txt | 6 ------ runtime/lua/vim/lsp.lua | 13 ------------- 2 files changed, 19 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 diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua index 670de7a996..c193fad6a4 100644 --- a/runtime/lua/vim/lsp.lua +++ b/runtime/lua/vim/lsp.lua @@ -971,19 +971,6 @@ function lsp.buf_get_clients(bufnr) return result end ---- Prints debug info about the current buffer clients. ---- ---- Result of this function cannot be relied upon and may change. -function lsp.buf_print_debug_info(bufnr) - print(vim.inspect(lsp.buf_get_clients(bufnr))) -end - --- Print some debug information about all LSP related things. --- The output of this function should not be relied upon and may change. -function lsp.print_debug_info() - print(vim.inspect({ clients = active_clients })) -end - -- Log level dictionary with reverse lookup as well. -- -- Can be used to lookup the number from the name or the -- cgit