diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-02-24 15:35:59 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-24 15:35:59 -0800 |
| commit | 80290ccc3a624b515541d1bc4e26257abf4951de (patch) | |
| tree | 10ece5afd4ff45718fad50cc03efb1240deb96bc /lua | |
| parent | Merge pull request #759 from ibraheemdev/patch-1 (diff) | |
| parent | lspinfo: add neovim log path in header (diff) | |
| download | nvim-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.lua | 1 |
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, ', '), } |
