-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathavrae.sublime-commands
111 lines (111 loc) · 2.36 KB
/
avrae.sublime-commands
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[
{
"caption": "Avrae Utilities: Update Gvar",
"command": "gvar_update"
},
{
"caption": "Avrae Utilities: Get Gvar",
"command": "gvar_get"
},
{
"caption": "Avrae Utilities: Copy Attack",
"command": "make_attack"
},
{
"caption": "Avrae Utilities: Copy Spell",
"command": "make_spell"
},
{
"caption": "Avrae Utilities: Get Collection Data",
"command": "collection_get"
},
{
"caption": "Avrae Utilities: Get Collection (All Content)",
"command": "collection_get_all"
},
{
"caption": "Avrae Utilities: Get Collection Description",
"command": "workshop_information_get"
},
{
"caption": "Avrae Utilities: Update Collection Description",
"command": "workshop_information_update"
},
{
"caption": "Avrae Utilities: Get Alias",
"command": "workshop_content_get",
"args":
{
"contentType": "alias"
}
},
{
"caption": "Avrae Utilities: Get Alias Description",
"command": "workshop_content_get",
"args":
{
"contentType": "alias",
"key": "docs"
}
},
{
"caption": "Avrae Utilities: Update Alias",
"command": "workshop_content_update",
"args":
{
"contentType": "alias"
}
},
{
"caption": "Avrae Utilities: Update Alias Description",
"command": "workshop_content_update",
"args":
{
"contentType": "alias",
"key": "docs"
}
},
{
"caption": "Avrae Utilities: Get Snippet",
"command": "workshop_content_get",
"args":
{
"contentType": "snippet"
}
},
{
"caption": "Avrae Utilities: Get Snippet Description",
"command": "workshop_content_get",
"args":
{
"contentType": "snippet",
"key": "docs"
}
},
{
"caption": "Avrae Utilities: Update Snippet",
"command": "workshop_content_update",
"args":
{
"contentType": "snippet"
}
},
{
"caption": "Avrae Utilities: Update Snippet Description",
"command": "workshop_content_update",
"args":
{
"contentType": "snippet",
"key": "docs"
}
},
{
"caption": "Preferences: Avrae Utilities Settings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/Avrae Utilities/Avrae.sublime-settings",
"default": "// Avrae Settings - User\n// Paste your token here:\n{\n\t\"token\": \"$0\"\n}\n"
}
}
]