-
Notifications
You must be signed in to change notification settings - Fork 26
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
Signature help triggers after pressing ,
inside an object
#41
Comments
ramonbakker
added a commit
to ramonbakker/dotfiles
that referenced
this issue
Apr 12, 2024
The automatic signature help selects items when it's not desired. See hrsh7th/cmp-nvim-lsp-signature-help#41.
@joshuali925 regarding the "enter selects the arg name instead of adding a new line" problem, I had the same issue. Here is how I fixed it: antoinemadec/dotfiles@6b4b700 |
Thanks a lot @antoinemadec! |
colepeters
added a commit
to colepeters/dotfiles
that referenced
this issue
Oct 18, 2024
I've run into this as well. It'd be great to either fix this or expose a setting that we could enable/disable this behavior. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To reproduce use the following init.lua
then create a js file
vim repro.js
, wait for tsserver, then type:see completion menu opens, suggesting
o: T
.The problem is that
Object.freeze(o)
, it's no longer valid when cursor is inside the curly bracketsIf it's not easy to fix, is there a way to configure
entry_filter
to not display suggestion in this case? maybe like thisBut wanted to see if there's a better way. Thanks
The text was updated successfully, but these errors were encountered: