Created
October 23, 2013 12:53
-
-
Save kimus/7118119 to your computer and use it in GitHub Desktop.
Plugin to Insert a UUID in Sublime Text
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): | |
return "Insert UUID" |
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
[ | |
{ "keys": ["control+shift+u"], "command": "insert_uuid" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment