SublimeText: find where method / function is called / called / referenced?

I know that you can press Ctrl + R to find the Defition / Declaration functions, but how will you return. Say you have a function and want to know where it was used.

You can perform a normal search, for example, name( and then it will appear. But .. if the name is minified, the search A( less useful, and sometimes there is a space A ( will not be matched.

I could also write a regular expression every time, but it is tedious and unproductive.

Just as there is a way to find where a function was defined, there must be a way to highlight and go through each call to that function .. so basically the search function is in the reverse order.

+8
javascript sublimetext sublimetext3
source share
1 answer

The answer is that Sublime Text cannot "go over to custom." This is not an Intellisense IDE. This is not like working with NetBeans or Visual Studio, where it indexes all the usages and function calls in the background and allows you to navigate through them.

The best you can do is a simple text search (or regular expression) and file restriction, search by type or directory.

Or you can use the plugin from the Sublime Text community, although I found that such plugins do not work or do not work, or not exactly what you requested.

The best option is as you indicated that you are already using - use a different IDE.

0
source share

All Articles