Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Galileo supports javascript cross-file code completion, but Eclipse Helios does not?

When editing multiple javascript files, each of which are supposed to be available in the global scope because - for example - they will each be loaded in the same html document, Galileo supported this little trick to put comment tags for other files that are required to be available in the same scope:

myfile.js:

// @include "somefile.js"
// @include "otherfile.js"

And you have cross-file code completion in myfile.js.

But now that I moved to Eclipse Helios, this doesn't work anymore. Did they move similar functionality to some other method?

like image 327
Redsandro Avatar asked Nov 04 '22 20:11

Redsandro


1 Answers

My Eclipse Helios installation with Spket works just fine.

Just FYI:

Eclipse:

Version: Helios Service Release 2 Build id: 20110218-0911

Spket:

Version: 1.6.18

In file One.js:

var varOne = 
{
    test: function(){}
}

In file Two.js on Ctrl-Space (or .):

enter image description here

As you can see - test function is visible.

EDIT:

also, what's the policy on resurrection of 2 months old questions?

like image 176
ZenMaster Avatar answered Nov 12 '22 12:11

ZenMaster