Created
September 6, 2021 13:51
-
-
Save yzhong52/b39a64ab9a422f3cb45476a890b27d17 to your computer and use it in GitHub Desktop.
Sublime Text Plugin - ExampleCommand.py
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 | |
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