javascript code map
All js-developers need such javascript outline panel:
http://visualstudiogallery.msdn.microsoft.com/288a2b0f-1357-47b4-8215-1134c36bdf30
Its should be better.
Also please, make the 'go to definition' and other inlellisence features.
3 comments
-
Chris Sells commented
That's a good idea, QS. Thanks for the suggestion.
-
qstream
commented
also there should be a hierarchy navigation path line over the editor.
It really awesome to go to some part of code just clicking it in the path line.
For example, that can contain such code path: "anonymous/obj1/setName/obj2/_somFn" when '_somFn' function is focused:
(function(){
var obj1 = {
setName:function(){
var obj2 = {
_somFn:function(){ /*cursor is here!*/ }
};
}
};
}) -
Muu
commented
+3 For "Go To Definition" and "Find all references" in Javascript.
Will of course not be perfect due to the lack of type safety but just a nice UI for smart "grep"ing of the javascript-code would be a huge improvement.