When editing multiple javascript files, each of them must be accessible in the global scope because, for example, each of them will be loaded into the same html document, Galileo supported this small trick to put comment tags for other files that should be available in the same amount:
myfile.js:
// @include "somefile.js"
// @include "otherfile.js"
And you have the cross file code completion in myfile.js.
But now that I have switched to Eclipse Helios, this no longer works. Did they move similar functions using any other method?
source
share