ray-x / lsp_signature.nvim

LSP signature hint as you type
Apache License 2.0
2.07k stars 57 forks source link

Is it possible to trigger the floating window for selection in popup menu? #112

Closed heygarrett closed 3 years ago

heygarrett commented 3 years ago

I'm currently experimenting with using omni completion instead of a dedicated completion plugin, but one thing I'm missing is function signatures for selected completions. Here's what it looks like with nvim-cmp:

Screen Shot 2021-10-06 at 12 53 28

Is there a way to trigger the floating window in lsp_signature for selected completions using omni completion?

Screen Shot 2021-10-06 at 12 54 32
ray-x commented 3 years ago

The signature has to be triggered inside the function and after trigger character (e.g. (, ,)

heygarrett commented 3 years ago

That's what I thought, but I figured it would be worth asking anyway. Thanks!