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_plugin | |
import uuid | |
class InsertUuidCommand(sublime_plugin.TextCommand): | |
def run(self, edit): | |
u = uuid.uuid4() | |
for r in self.view.sel(): | |
self.view.replace(edit, r, u.__str__()) | |
def description(self): |
NewerOlder