feat: remove :Lsp* commands for nvim 0.12 - #4234
Conversation
65487ae to
998ba56
Compare
:Lsp* commands for nvim 0.12:Lsp* commands for nvim 0.12
998ba56 to
7e58730
Compare
|
What about |
|
There's a possible argument for You can also easily put |
|
LspLog != LspInfo |
|
Oh my bad. I misunderstood. |
|
I believe logs are stored in Native |
|
(Edit: My memory is inaccurate. The plan is much simpler; just have an In the meantime you can implement a simple custom user command that reimplements vim.api.nvim_create_user_command('LspLog', function()
vim.cmd.tabnew { vim.lsp.log.get_filename() }
end, {
desc = 'Opens the Nvim LSP client log.',
}) |
|
|
To be merged when neovim/neovim#36925 is merged.