-
Notifications
You must be signed in to change notification settings - Fork 513
Sometimes recommends autocomplete / intellisense for wrong cmdlet #5183
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
Comments
Note the 'abc' symbol next to it, I'm pretty sure that means that's a word-based suggestion (that is, from VS Code completing out of what thinks are nearby symbols) not an extension-completion. Can you try disabling |
You can disable it on a per-language basis too "[powershell]": {
"editor.wordBasedSuggestions": "off",
}, |
What a useless VSCode feature. I'll try to disable it and see if it makes me happy. Thanks to both. 😊 |
It's actually pretty useful in languages that don't have an LSP (or a crappy one). You can also set it to "bottom" so they only show up last. |
Maybe. Based on my experience with PowerShell it does not seem particularly useful with with intellisense suggestions with no context. Maybe LLMs could improve it, it could understand context a bit better. |
I'm happy with intellisense suggestions now that I've disabled word based suggestions with: {
"[powershell]": {
"editor.wordBasedSuggestions": "off",
}
} Thank you. 😊 |
Uh oh!
There was an error while loading. Please reload this page.
Prerequisites
Summary
I often experience that
vscode-powershell
recommends autocomplete / intellisense for wrong cmdlet. Example just now, seems intellisense is fromAdd-Member
cmdlet andTest-NetConnection
? Really messed up.PowerShell Version
Visual Studio Code Version
Extension Version
ms-vscode.powershell@2025.0.0
Steps to Reproduce
Write PowerShell. Use cmdlets. Often get recommended parameters / autocomplete / intellisense for the wrong cmdlet.
Visuals
No response
Logs
No response
The text was updated successfully, but these errors were encountered: