Created
March 4, 2015 02:45
-
-
Save itomg/2c6d11fd2e5aa15e7329 to your computer and use it in GitHub Desktop.
How to find and bind commands in Sublime Text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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