Created
November 17, 2014 17:05
-
-
Save danielmt/ee5cbad23f187ab9fe2a to your computer and use it in GitHub Desktop.
Auto reveal file in sidebar when activated
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
import sublime, sublime_plugin | |
class AutoRevealInSideBar(sublime_plugin.EventListener): | |
def on_activated(self, view): | |
view.window().run_command('reveal_in_side_bar') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment