I use PHPStorm 3.0.3 and would like to ask my question regarding code completion specifically regarding the require-method in Dojo 1.6.
The example code would be something like this:
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.6.0/dojo/dojo.xd.js"></script>
<script type="text/javascript">
dojo.require([...]);
</script>
</head>
<body>
</body>
</html>
Now after reaching the second letter in require, PHPStorms suggests me a lot of methods and attributes, but not require.

How do I make PHPStorm show me require? (code inspection? configure dojo as a library?)
This issue I face with many Dojo-methods and attributes which I use frequently. require is more a generic choice.
If this is not possible, I also accept that as an answer, as long as a technical reason is given.
