You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, I appreciate your efforts in maintaining this project.🥰 The following issue may seem trivial, but I have not been able to solve it after checking many documents. If it has taken up your valuable time, I apologize.
I have bound the 'K' key to the vim.lsp.buf.hover function using vim.keymap.set('n', 'K', vim.lsp.buf.hover, opts). However, when I press the 'K' key, NeoVim displays "No information available" at the bottom, regardless of whether the cursor is on a variable name or keyword. This issue persists even after using :LspRestart.
I have adjusted the log level of lsp.log to DEBUG. Here is a typical log snippet:
I'm not entirely sure if this issue should be raised here, but when I enable the jedi_language_server, the hover window appears again (of course, this is because of jedi_language_server), but "No information available" still appears at the bottom. So I think this might be a bug in pylsp.
First of all, I appreciate your efforts in maintaining this project.🥰 The following issue may seem trivial, but I have not been able to solve it after checking many documents. If it has taken up your valuable time, I apologize.
I have bound the 'K' key to the
vim.lsp.buf.hover
function usingvim.keymap.set('n', 'K', vim.lsp.buf.hover, opts)
. However, when I press the 'K' key, NeoVim displays "No information available" at the bottom, regardless of whether the cursor is on a variable name or keyword. This issue persists even after using:LspRestart
.I have adjusted the log level of lsp.log to DEBUG. Here is a typical log snippet:
lsp.log
The code in the buffer and the configuration file are as follows:
test_simple.py
nvim-lspconfig.lua
I am using the Windows 10 and NeoVim version 0.9.4.
The text was updated successfully, but these errors were encountered: