Is there an advanced javascript editor that will do things like "go to definition" like Visual Studio?

I have this project based on JQuery / Javascript, and the Visual Studio 2008..JS file editor is just not good enough, Notepad ++ is better at coloring and highlighting the context, but I'm looking for an editor that will do more complex things, for example, with my custom created objects and navigate to "go to definition" style.

Is there anything similar you could recommend?

+4
source share
3 answers

I would say check vs2010 because it has much better javascript support. Also, if you really want some cool things to check resharper for visual studio, as they also add javascript support in their release. Makes my life a lot easier.

+3
source

The Zeus editor has semi-automatic ctags , and it uses this information about this tag to bring it into the definition and automatically complete the functions.

Autocomplete generally works well enough for static languages, but for dynamic languages ​​like Java Script, it really doesn't work very well.

But ctags really picks up things like Java Script classes and functions, so the go to definition function should still work.

+2
source

"go to definition" is for javascript in Visual Studio 2012 RC

+1
source

Source: https://habr.com/ru/post/1334103/


All Articles