Code completion doesn't update during completion of arguments
See original GitHub issuegiven a constructor A(this.b)
where b is of type B, typing A(b:
via autocomplete currently gives something like A(b: b
where the second b is highlighted. Would be nice for the autocomplete dropdown to still be open and show either
- instances of B that are accessible in the current scope and
- an autocompletable option to paste in
new B(...
directly (or list literals or wtv)
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
How to fix IntelliJ IDEA method parameter auto-completion?
IDEA doesn't fill the arguments automatically. You can use Ctrl+Shift+Space for auto-completion (completion is based on type, not name) or Ctrl+Alt+Space ...
Read more >Code completion bug: Function argument suggestion for R ...
Hello, I noticed that in v1.3, function argument suggestion no longer works after the first argument of a function.
Read more >Code completion not working in 10.2 | Apple Developer Forums
With the 10.2 update, I cannot get code completion working in one of my projects. I've reinstalled Xcode. I've nuked the repo and...
Read more >Code completion | IntelliJ IDEA Documentation - JetBrains
Basic code completion helps you complete the names of classes, methods, fields, and keywords within the visibility scope.
Read more >IntelliSense in Visual Studio Code
This can be caused by a variety of reasons. First, try restarting VS Code. If the problem persists, consult the language extension's documentation....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ok, this should work better now; the completion list will be refreshed when typing more characters (this includes
(
and spaces, so it’ll trigger much more often and should be much more useful). It’ll be in the next release.However, there’s still on minor issue which I’ve raised #302 for, which I suspect will either be a VS Code or Dart change. I’ll do some testing and raise a request for whichever soon.
\o/ Trying it now