-
Notifications
You must be signed in to change notification settings - Fork 3
/
Default.sublime-commands
63 lines (63 loc) · 1004 Bytes
/
Default.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
[
{
"caption": "Select Next Number",
"command": "select_next_number"
},
{
"caption": "Increment Numbers",
"command": "modify_numbers",
"args": {
"args":{
"modifier_name" : "increment"
}
}
},
{
"caption": "Decrement Numbers",
"command": "modify_numbers",
"args": {
"args":{
"modifier_name" : "decrement"
}
}
},
{
"caption": "Double Numbers",
"command": "modify_numbers",
"args": {
"args":{
"modifier_name" : "double"
}
}
},
{
"caption": "Square Numbers",
"command": "modify_numbers",
"args": {
"args":{
"modifier_name" : "squared"
}
}
},
{
"caption": "Number Sequence",
"command": "modify_numbers",
"args": {
"args":{
"modifier_name" : "sequence"
}
}
},
{
"caption": "Batch Number Manipulation",
"command": "batch_modify_numbers"
},
{
"caption": "Accumulate Selected Number(s)",
"command": "accumulate_numbers"
},
{
"caption": "Sum Up Selected Number(s)",
"command": "sum_all_numbers"
}
]