aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-02-24 15:35:59 -0800
committerGitHub <noreply@github.com>2021-02-24 15:35:59 -0800
commit80290ccc3a624b515541d1bc4e26257abf4951de (patch)
tree10ece5afd4ff45718fad50cc03efb1240deb96bc /lua
parentMerge pull request #759 from ibraheemdev/patch-1 (diff)
parentlspinfo: add neovim log path in header (diff)
downloadnvim-lspconfig-80290ccc3a624b515541d1bc4e26257abf4951de.tar
nvim-lspconfig-80290ccc3a624b515541d1bc4e26257abf4951de.tar.gz
nvim-lspconfig-80290ccc3a624b515541d1bc4e26257abf4951de.tar.bz2
nvim-lspconfig-80290ccc3a624b515541d1bc4e26257abf4951de.tar.lz
nvim-lspconfig-80290ccc3a624b515541d1bc4e26257abf4951de.tar.xz
nvim-lspconfig-80290ccc3a624b515541d1bc4e26257abf4951de.tar.zst
nvim-lspconfig-80290ccc3a624b515541d1bc4e26257abf4951de.zip
Merge pull request #760 from teto/lspinfo
lspinfo: add neovim log path in header
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/lspinfo.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lspconfig/lspinfo.lua b/lua/lspconfig/lspinfo.lua
index a21dd44b..f526cd13 100644
--- a/lua/lspconfig/lspinfo.lua
+++ b/lua/lspconfig/lspinfo.lua
@@ -21,6 +21,7 @@ return function ()
local header = {
"Configured servers: "..table.concat(vim.tbl_keys(configs), ', '),
+ "Neovim logs at: "..(vim.lsp.get_log_path()),
"",
tostring(#buf_clients).." client(s) attached to this buffer: "..table.concat(buf_client_names, ', '),
}