Smarter JavaScript completion in IntelliJ IDEA 11.1
April 4th, 2012 by Andrey CheptsovThis is a cross-post from WebStorm & PhpStorm blog, originally posted by Konstantin Ulitin.
We are getting a lot of reports and ideas from you about the ordering of JavaScript completion options. So in IntelliJ IDEA we made small but important improvements. More relevant suggestions now appear at the top of the list in many cases.
1. Suggested names are ordered by their definition scope nesting, i.e. global variables are placed at the bottom of the list.
2. Object members are ordered by class inheritance.
3. If a local variable exists with the same name as the parameter of the called function, that variable is considered the most relevant.
All these rules also apply to ActionScript completion.
You can explore these features in IntelliJ IDEA 11.1. Your comments and suggestions are welcome in our issue tracker
Tags: Code Completion, JavaScript

April 4th, 2012 at 9:03 am
How the class inheritance is guessed?
April 5th, 2012 at 2:26 am
Nice, but IDEA 11.1 is much slower and consumes more resources than IDEA 10 on WindowsXP
.
(even if the opposite is stated in the “new features” of the product description).
April 5th, 2012 at 3:38 am
John,
Please capture a CPU snapshot as described in http://devnet.jetbrains.net/docs/DOC-192 and file an issue with the snapshot attached.
April 5th, 2012 at 4:06 am
Arikon,
For JavaScript this works for prototype inheritance, and some frameworks mechanisms of class inheritance (as ExtJS in example).