There is any link creator for sublime text 2?
for example to manually set: fn1 is called by fn2 because of X-reason
I would like to know who calls this method and why, internally (and maybe externally) in my project.
There is any link creator for sublime text 2?
for example to manually set: fn1 is called by fn2 because of X-reason
I would like to know who calls this method and why, internally (and maybe externally) in my project.
It depends on the programming language. Unfortunately, knowing callees requires full compilation of and analysis of source code and even then it is not always possible. This is not limited to Sublime and the problem is discussed elsewhere.
Statically compiled languages, like C, were static analysis is possible this can be done with existing plugins like CTags https://github.com/SublimeText/CTags
Dynamic languages like PHP, Python and Ruby cannot get such a feature due to nature of the language, as you can resolve the content of the object (this) only in run-time.
You may be able manually extracting type and calling information. In this blog post (of mine) one project does it to create .sublime-complete file:
http://opensourcehacker.com/2013/03/04/javascript-autocompletions-and-having-one-for-sublime-text-2/