I'm trying to move my workspace to c9 because the Ace editor autocomplete really liked me when I was working on NodeJS projects.
But now I would like to work with client-side JS files. From that moment on, autocompletion goes wrong. In fact, there is nothing like the โrequireโ command on the JS client side inside the JS files themselves (other than using some plugins) to report other source files used in.
Therefore, when I use a function defined in another file (even libraries, frameworks: jquery, etc.) in one of my JS files, Ace notifies me that the function is not defined (because it has no way to know that function is defined in another file, I think).
Here we say: is there some kind of comment line that I could add to my code or some c9 configuration that I could install to fix this behavior?
source
share