-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathMain.sublime-menu
More file actions
35 lines (35 loc) · 1.04 KB
/
Main.sublime-menu
File metadata and controls
35 lines (35 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[
{
"id": "tools",
"caption": "Tools",
"children":
[
{
"id": "packages",
"caption": "Packages",
"children":
[
{
"caption": "Generate UUID v4",
"command": "generate_uuid"
},
{
"caption": "Generate short UUID v4",
"command": "generate_uuid",
"args": { "short": true }
},
{
"caption": "Generate single UUID v4",
"command": "generate_uuid",
"args": { "single": true }
},
{
"caption": "Generate single short UUID v4",
"command": "generate_uuid",
"args": { "short": true, "single": true }
}
]
}
]
}
]