Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Textmate go to the function definition?

Lets say I have this in my controller

@appointment.add_appointer

Is there a shortcut in Textmate to jump to the add_appointer function definition in my appointment.rb model?

like image 556
alik Avatar asked Dec 13 '22 09:12

alik


1 Answers

No, unfortunately. I think the fastest way is to probably use:

Command+T <type appointment.rb>

Now in open file

Command+Shift+T <type method name>
like image 94
agmcleod Avatar answered Dec 25 '22 21:12

agmcleod