A small binding so you can command-shift-click things and go to their definition (like command clicking in Rubymine)
This allows you to command-shift-click a method, and it will take you to the definition (Sublime Text 3 only)
Create file
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User
touch Default\ \(OSX\).sublime-mousemap
touch Default\ \(OSX\).sublime-mousemap
Add binding
[
{
"button": "button1",
"count": 1,
"modifiers": ["super", "shift"],
"press_command": "drag_select",
"command": "goto_definition"
}
]
{
"button": "button1",
"count": 1,
"modifiers": ["super", "shift"],
"press_command": "drag_select",
"command": "goto_definition"
}
]
Should be done.
Go command-shift-click stuff.

Pingback: Sublime Text 2 – How to Create Snippets | Web Tempest