-
Notifications
You must be signed in to change notification settings - Fork 13
/
Default.sublime-commands
52 lines (52 loc) · 1.39 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
[
{
"caption": "Themr: List themes",
"command": "themr_list_themes"
},
{
"caption": "Themr: Next theme",
"command": "themr_cycle_themes",
"args": {"direction": "next"}
},
{
"caption": "Themr: Previous theme",
"command": "themr_cycle_themes",
"args": {"direction": "prev"}
},
{
"caption": "Themr: Random theme",
"command": "themr_cycle_themes",
"args": {"direction": "rand"}
},
{
"caption": "Themr: List favorite themes",
"command": "themr_list_favorite_themes"
},
{
"caption": "Themr: Next favorite theme",
"command": "themr_cycle_favorite_themes",
"args": {"direction": "next"}
},
{
"caption": "Themr: Previous favorite theme",
"command": "themr_cycle_favorite_themes",
"args": {"direction": "prev"}
},
{
"caption": "Themr: Random favorite theme",
"command": "themr_cycle_favorite_themes",
"args": {"direction": "rand"}
},
{
"caption": "Themr: Add current theme to favorites",
"command": "themr_favorite_current_theme"
},
{
"caption": "Themr: Remove current theme from favorites",
"command": "themr_unfavorite_current_theme"
},
{
"caption": "Themr: Toggle Theme Settings",
"command": "themr_toggle_settings"
}
]