Skip to content

Instantly share code, notes, and snippets.

@itomg
Created March 4, 2015 02:45
Show Gist options
  • Save itomg/2c6d11fd2e5aa15e7329 to your computer and use it in GitHub Desktop.
Save itomg/2c6d11fd2e5aa15e7329 to your computer and use it in GitHub Desktop.
How to find and bind commands in Sublime Text
1. control + ~: open log
sublime.log_comands(True);
2. select a file and right click "Reveal in Side Bar"
reveal_in_side_bar
3. bind command to "/Users/.../Library/Application Support/Sublime Text 3/Packages/User/Default (OSX).sublime-keymap"
{ "keys": ["command+shift+\\"], "command": "reveal_in_side_bar" }
4. close log
sublime.log_comands(False);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment