I Often need UUIDs inserted into files that I'm editing in Notepad++. Does anyone have a macro or add in that does this. Or an autohotkey script?
views:
177answers:
2
+1
A:
(AHK) Universally Unique Identifier (UUID/GUID) Generator
It's not spectacular(has its flaws), but it looks to get the job done.
hometoast
2010-03-30 18:00:44
+2
A:
Install the GhNppExec plugin from Plugin_Central then configure to run the simple python script below. Use the shortcut mapper to assign a key combination to the plugin command.
import uuid
import sys
# make a random UUID
sys.stdout.write(str(uuid.uuid4()).upper())
wallflower
2010-07-13 06:17:41