js3-mode
js3-mode copied to clipboard
imenu failed to list the functions in js3-mode
Here is the sample code, js3-mode-20120508 installed through elpa,
(function () {
var Hello = this.Hello = (function ($) {
function locateIFrameIndex(iframe) {
alert('bye world')
}
var onCrossDomainMessage = function (e) {
alert('hello world')
};
return {
init:function(){
alert('init')
}
};
})(jQuery);
})(this);
$(document).ready(Hello.init);
You know, I was actually wondering if anyone used imenu support in js3-mode. I was going to take it out in the next version.
how you do the nav thing in javascript then?
Another vote for this issue. I find imenu quite useful via helm for js nav, but not being able to jump to names async.waterfall functions, for example, is a bit of an issue for me with js3-mode.
+1. I find imenu useful, it'll be nice to get this working for js3. For now the alternative is to use helm-occur.