sublime plugin - Find and go to function definition

javascript

Solution

This feature already exists in Sublime Text.

After you select a function you must use F12 and a list with available definitions will appear.

You could check out this answer too: Sublime 3 - Set Key map for function Goto Definition

Edit:

In Sublime Text 3, with Build 3124, the available function definitions are also shown when hovering the function name.

Problem

I am trying to find a plugin on Sublime Text 3. Using this plugin I can click a function and go to the definition of this function within my project. Does this plugin exist? Can you please provide a link? Hope it works on Javascript file, which I am learning right now. I found this one here, but it does not work. https://github.com/timdouglas/sublime-find-function-definition I cannot find this plugin in Package Install.

Original source

Related problems