rayx
rayx
nop, I am using nvim-cmp myself, and did not see the issue you experienced. did you update the plugin to latest?
Could you try this minimum vimrc https://github.com/ray-x/nvim/blob/master/min/init_pack.lua And check if the issue can be reproduce?
what is your environment. Could you provides info so I can reproduce it?
Based on the LunarVim doc, it should be something like this: ```lua config = function() cfg = {...} -- add you config here require "lsp_signature".setup(cfg) end ```
Do you have lspconfig enabled? Is it running correctly. You can check LspInfo from command line. Also you can add some logs to see if `require "lsp_signature".setup({})` is called.
This is a known issue, you can use `toggle_key` to hide floating win.
how about `floating_window_off_y = -1`? Also how about disabling the floatwin border? TBH, I am a bit surprise to me that it still covers the current line. Might be something...
Hi, Could you try latest version The issue is fixed in https://github.com/ray-x/lsp_signature.nvim/commit/4156acf14b2b4f7d4db3f232228e80932ec5dd5d The `wrap` option need to set to true (default false now)
There is another reporting regarding the border missing https://github.com/ray-x/lsp_signature.nvim/issues/190
The floating wont resizes together with the terminal. The nearest solution might be close and reopen the floating window. If you feel the feature is essential to you, you can...