Advertisement
rodro1

Sublime jump to function details

Aug 29th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. http://www.bymichaellancaster.com/blog/sublime-text-3-jump-to-definition-custom-shortcut/
  2.  
  3. In Sublime Text 3
  4.  
  5.  
  6. Sublime Text -> Preferences -> Key Bindings - User
  7. You can add any shortcut you want since it's not in use already so you don't overwrite the default shortcut settings.
  8. In my case I decided to use "shift+command+m"..as below.
  9.  
  10.  
  11. [
  12. { "keys": ["shift+command+m"], "command": "goto_definition" }
  13. ]
  14. Save it and you are done. (ps: if did not work restart your Sublime Text 3).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement