-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDefault.sublime-commands
executable file
·30 lines (30 loc) · 1.09 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
[
{
"caption": "Meetio Theme: Edit Settings",
"command": "meetio_settings"
},
{
"caption": "Meetio Theme: Edit Settings (JSON)",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Meetio Theme/Preferences.sublime-settings",
"default": "// Settings in here override those in \"Default/Preferences.sublime-settings\",\n// and are overridden in turn by syntax-specific settings.\n{\n\t$0\n}\n"
}
},
{
"caption": "Meetio Theme: Default Configuration",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Meetio Theme/Meetio Theme.sublime-theme",
"default": "{\n\t\"variables\": {\n\t\t$0\n\t},\n\t\"rules\": []\n}\n"
}
},
{
"caption": "Meetio Theme: High Contrast Configuration",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Meetio Theme/Meetio Theme High Contrast.sublime-theme",
"default": "{\n\t\"variables\": {\n\t\t$0\n\t},\n\t\"rules\": []\n}\n"
}
}
]