Created
October 21, 2011 02:27
-
-
Save ilude/1302962 to your computer and use it in GitHub Desktop.
Sublime Text 2 - Open in Browser
This file contains hidden or 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 | |
| import webbrowser | |
| class ExampleCommand(sublime_plugin.TextCommand): | |
| def run(self, edit): | |
| url = self.view.file_name() | |
| webbrowser.open_new(self.view.file_name()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment