Skip to content

Instantly share code, notes, and snippets.

@ilude
Created October 21, 2011 02:27
Show Gist options
  • Select an option

  • Save ilude/1302962 to your computer and use it in GitHub Desktop.

Select an option

Save ilude/1302962 to your computer and use it in GitHub Desktop.
Sublime Text 2 - Open in Browser
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