We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Completion-nvim has this feature where completing also adds parentheses if the symbol you are completing is a function. Something like
pri·
becomes
printf(·)
and a function with no arguments like getchar() puts the cursor after the parens. Can this be added?
getchar()
The text was updated successfully, but these errors were encountered:
I'm looking for a way to enable this as well. I'm not sure if it should be handled individually in the language server or in LSC.
Sorry, something went wrong.
Some language servers might handle it but I'm currently using nvim-cmp with nvim-autopairs which works for every language.
No branches or pull requests
Completion-nvim has this feature where completing also adds parentheses if the symbol you are completing is a function. Something like
becomes
and a function with no arguments like
getchar()
puts the cursor after the parens. Can this be added?The text was updated successfully, but these errors were encountered: