Skip to content

Instantly share code, notes, and snippets.

@HideoKun
Last active March 25, 2017 12:10
Show Gist options
  • Save HideoKun/e023795421a5bb9159e3330219040336 to your computer and use it in GitHub Desktop.
Save HideoKun/e023795421a5bb9159e3330219040336 to your computer and use it in GitHub Desktop.
[
{ "keys": ["ctrl+b"], "command": "reveal_in_side_bar_and_focus" },
]
import sublime, sublime_plugin
class RevealInSideBarAndFocusCommand(sublime_plugin.WindowCommand):
def run(self):
self.window.run_command("reveal_in_side_bar")
self.window.run_command("focus_side_bar")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment