Does anyone have a Notepad++ plugin that will generate UUIDs and insert them

前端 未结 3 1654
没有蜡笔的小新
没有蜡笔的小新 2021-01-01 18:28

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?

相关标签:
3条回答
  • 2021-01-01 19:15

    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())
    
    0 讨论(0)
  • 2021-01-01 19:16

    (AHK) Universally Unique Identifier (UUID/GUID) Generator

    It's not spectacular(has its flaws), but it looks to get the job done.

    0 讨论(0)
  • 2021-01-01 19:25

    NppToolBucket does it very nicely, too.

    http://sourceforge.net/p/npp-plugins/discussion/667712/thread/71f5e965

    0 讨论(0)
提交回复
热议问题