Skip to content

Instantly share code, notes, and snippets.

@tearf001
Created April 1, 2018 16:40
Show Gist options
  • Save tearf001/d1f35138b06e296d128b1c2dfdfd8a50 to your computer and use it in GitHub Desktop.
Save tearf001/d1f35138b06e296d128b1c2dfdfd8a50 to your computer and use it in GitHub Desktop.
hello world
import sublime, sublime_plugin
class ExampleCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.insert(edit, 0, "Hello, World!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment