-
Notifications
You must be signed in to change notification settings - Fork 2
/
Main.sublime-commands
93 lines (93 loc) · 2.22 KB
/
Main.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
[
{
"caption": "King: Help!",
"command": "king_need_help",
"args": {}
},
{
"caption": "King: Edit Settings",
"command": "open_file",
"args": {
"file": "${packages}/User/SublimeNumberKing.sublime-settings"
}
},
{
"caption": "King: Switch to Auto Mode",
"command": "king_switch_number_type",
"args": {
"select_type": "auto"
}
},
{
"caption": "King: Switch to Integer Mode (Round Down)",
"command": "king_switch_number_type",
"args": {
"select_type": "integer"
}
},
{
"caption": "King: Switch to Integer Mode (Round Nearest)",
"command": "king_switch_number_type",
"args": {
"select_type": "integer_round_nearest"
}
},
{
"caption": "King: Switch to Float Mode",
"command": "king_switch_number_type",
"args": {
"select_type": "float"
}
},
{
"caption": "King: Select Next Number",
"command": "king_select_number",
"args": {}
},
{
"caption": "King: Select All Numbers",
"command": "king_select_all_numbers",
"args": {}
},
{
"caption": "King: Increase by 1",
"command": "king_manipulate_number",
"args": {
"formula": "x + 1"
}
},
{
"caption": "King: Decrease by 1",
"command": "king_manipulate_number",
"args": {
"formula": "x - 1"
}
},
{
"caption": "King: Number Sequence",
"command": "king_manipulate_number",
"args": {
"formula": "i + 1"
}
},
{
"caption": "King: Transform Numbers",
"command": "king_wonderfully_manipulate",
"args": {}
},
{
"caption": "King: Modify Selection",
"command": "king_wonderfully_manipulate_selection",
"args": {}
},
{
"caption": "King: Select Interlaced",
"command": "king_interlaced_select",
"args": {}
},
{
"caption": "King: [CSV] Select i-th column in CSV",
"command": "king_select_csv_field",
"args": {}
}
]