-
-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need help in understanding on_attach
vs setup
config
#341
Comments
With latest lazy.nvim {
'ray-x/lsp_signature.nvim',
event = { 'InsertEnter' },
opts = {
...
}
} |
Sorry, does't work with the suggested setup. And even when I tried to restore the previous setup that used to work Im getting:
And even though |
The error you saw was fixed. |
There is some additional information here about this issue( -- in lsp_signature.lua
return {
"ray-x/lsp_signature.nvim",
event = "InsertEnter",
opts = function()
require("lsp_signature").on_attach({
-- your own settings
})
end,
} One of the points is the
Hope this information can help you and improve. |
I've setup
lsp_signature
with the following in mylsp_signature.lua
(lazy):However, this doesn't work at all.
After a bit of experimenting I succeeded in showing up signature help (still without a panda) with the following:
Can somebody please guide me on the proper way on setting up the plugin (lazy) and explaining the difference between the 2?
The text was updated successfully, but these errors were encountered: