We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
blink.cmp
<C-k>
When completing a function call in PowerShell files, parentheses are added to the end of the function, which is incorrect syntax for PowerShell.
Expected:
Write-Host
Actual:
Write-Host()
I've worked around this with the config snippet below.
opts = { keymap = { preset = "default" }, appearance = { nerd_font_variant = "mono", }, completion = { documentation = { auto_show = true, }, accept = { auto_brackets = { kind_resolution = { enabled = true, blocked_filetypes = { "ps1" }, }, semantic_token_resolution = { enabled = true, blocked_filetypes = { "ps1" }, -- How long to wait for semantic tokens to return before assuming no brackets should be added timeout_ms = 400, }, }, }, }, ... },
neovim
NVIM v0.11.0-dev-2044+gaafbd442b2 Build type: RelWithDebInfo LuaJIT 2.1.1741730670
1.3.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Make sure you have done the following
blink.cmp
<C-k>
on https://cmp.saghen.dev)Bug Description
When completing a function call in PowerShell files, parentheses are added to the end of the function, which is incorrect syntax for PowerShell.
Expected:
Write-Host
Actual:
Write-Host()
I've worked around this with the config snippet below.
Relevant configuration
neovim
versionNVIM v0.11.0-dev-2044+gaafbd442b2 Build type: RelWithDebInfo LuaJIT 2.1.1741730670
blink.cmp
version1.3.1
The text was updated successfully, but these errors were encountered: