Dart Plugin - no code completion
I don't know if this is a bug yet, so I figured I would ask here first.
I just started using the Dart plugin, and I cannot for the life of me figure out how to get code completion to work. The behavior is illustrated here:
library test;
import 'dart:html';
main() {
Element elem = querySelector('main-search');
elem. //should give syntax suggestions, instead gives "no suggestions"
}
Note that the above code runs in a properly setup Dart module, inside a larger Web project. I have also tried creating variables of other types, including built-in ones such as String. The behavior is always the same.
I have everything up to date, including the latest Dart SDK. I have gone through all the Dart plugin settings I could find, but there seems to be nothing to do there.
How can I get the completion to work?
Please sign in to leave a comment.
There are workarounds that may help, but I think you'd better wait few hours for the next IntelliJ IDEA 13.1 EAP and the next Dart plugin version. Dart project setup will be greatly improved there and all should work smoothly.
Thanks for the reply, I will look forward to the updated release in that case for now.