forked from benweier/Schemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
56 lines (56 loc) · 1.57 KB
/
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
[
{
"caption": "Schemr: List all schemes",
"command": "schemr_list_schemes"
},
{
"caption": "Schemr: Next scheme",
"command": "schemr_cycle_schemes",
"args": {"direction": "next"}
},
{
"caption": "Schemr: Previous scheme",
"command": "schemr_cycle_schemes",
"args": {"direction": "prev"}
},
{
"caption": "Schemr: Random scheme",
"command": "schemr_cycle_schemes",
"args": {"direction": "rand"}
},
{
"caption": "Schemr: List favorite schemes",
"command": "schemr_list_favorite_schemes"
},
{
"caption": "Schemr: Next favorite scheme",
"command": "schemr_cycle_favorite_schemes",
"args": {"direction": "next"}
},
{
"caption": "Schemr: Previous favorite scheme",
"command": "schemr_cycle_favorite_schemes",
"args": {"direction": "prev"}
},
{
"caption": "Schemr: Random favorite scheme",
"command": "schemr_cycle_favorite_schemes",
"args": {"direction": "rand"}
},
{
"caption": "Schemr: Add current scheme to favorites",
"command": "schemr_favorite_current_scheme"
},
{
"caption": "Schemr: Remove current scheme from favorites",
"command": "schemr_unfavorite_current_scheme"
},
{
"caption": "Schemr: Set scheme for current syntax",
"command": "schemr_set_syntax_scheme"
},
{
"caption": "Schemr: Reset scheme for current syntax",
"command": "schemr_reset_syntax_scheme"
}
]