This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Description
- Create a new empty project
- Create a file called MyModule.js containing:
define(function (require, exports, module) {
function something() {
}
});
- Create another file called MyCaller.js containing:
define(function (require, exports, module) {
var MyModule = require("MyModule");
});
- In MyCaller, below the
var statement, type MyModule. - nothing is hinted (correct)
- Switch back to MyModule.js and add
exports.something = something below the function
- Save MyModule.js
- Switch back to MyCaller and bring up code hints after
MyModule.
Result: Still no hints. If you reload Brackets, you'll get the proper hint list (something).