lspsaga.nvim
lspsaga.nvim copied to clipboard
Hover doc is not working
Description
Hover doc all of a sudden stopped working for me. I've previously been using it with this very fork and it was working. I don't recall doing any plugin or system updates, but it's possible.
Expected Behavior Leader k shows the hover information
Actual Behavior Leader k shows nothing. Not even the default vim action of opening help
Details
Reproduce
require('lspsaga').setup({})
local map = vim.api.nvim_buf_set_keymap
map(0, "n", "K", "<cmd>Lspsaga hover_doc<cr>", {noremap = true})
Above I copied from the readme as a troubleshooting step. Before I had nnoremap K <cmd>lua require('lspsaga.hover').render_hover_doc()<CR>. Both have the same effect (nothing).
Environment
- nvim --version output: NVIM v0.10.0-dev
- Operating system: Pop!_OS 22.04
- lspsaga commit: 5faeec9f2508d2d49a66c0ac0d191096b4e3fa81
try checking your neovim version, stopped working for me when i updated my neovim-git to the most recent update, i had to roll-back to neovim stable, to make it work again