Skip to content

Instantly share code, notes, and snippets.

@yzhong52
Created September 6, 2021 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yzhong52/b39a64ab9a422f3cb45476a890b27d17 to your computer and use it in GitHub Desktop.
Save yzhong52/b39a64ab9a422f3cb45476a890b27d17 to your computer and use it in GitHub Desktop.
Sublime Text Plugin - ExampleCommand.py
import sublime
import 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