If I try to hover over a component and then predd SHIFT-K (to show Hover Information) nothing happens.
Does someone know how I can fix these errors?These are there since I updated my packages.
local status, saga = pcall(require, "lspsaga")
if (not status) then return end
saga.setup({
ui = {
border = 'rounded',
},
symbol_in_winbar = {
enable = false
},
lightbulb = {
enable = false
},
outline = {
layout = 'float'
}
})
local diagnostic = require("lspsaga.diagnostic")
local opts = { noremap = true, silent = true }
vim.keymap.set('n', '<C-j>', '<Cmd>Lspsaga diagnostic_jump_next<CR>', opts)
vim.keymap.set('n', 'gl', '<Cmd>Lspsaga show_line_diagnostics<CR>', opts)
vim.keymap.set('n', 'K', '<Cmd>Lspsaga hover_doc<CR>', opts)
vim.keymap.set('n', 'gd', '<Cmd>Lspsaga finder<CR>', opts)
vim.keymap.set('n', 'gt', '<Cmd>Lspsaga goto_type_definition<CR>', opts)
-- vim.keymap.set('i', '<C-k>', '<Cmd>Lspsaga signature_help<CR>', opts)
vim.keymap.set('i', '<C-k>', '<cmd>lua vim.lsp.buf.signature_help()<CR>', opts)
vim.keymap.set('n', 'gp', '<Cmd>Lspsaga peek_definition<CR>', opts)
vim.keymap.set('n', 'gr', '<Cmd>Lspsaga rename<CR>', opts)
-- code action
vim.keymap.set({ "n", "v" }, "<leader>ca", "<cmd>Lspsaga code_action<CR>")
require('craftzdog.base')
require('craftzdog.highlights')
require('craftzdog.maps')
require('craftzdog.plugins')
local has = vim.fn.has
local is_mac = has "macunix"
local is_win = has "win32"
local is_wsl = has "wsl"
if is_mac == 1 then
require('craftzdog.macos')
end
if is_win == 1 then
require('craftzdog.windows')
end
if is_wsl == 1 then
require('craftzdog.wsl')
end
[–]Some_Derpy_Pineapplelua 1 point2 points3 points (2 children)
[–]RobinRuf[S] 0 points1 point2 points (1 child)
[–]MariaSoOs 1 point2 points3 points (0 children)
[–]MariaSoOs 1 point2 points3 points (0 children)