-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.sublime-menu
37 lines (37 loc) · 1.49 KB
/
Main.sublime-menu
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
[
{
"mnemonic": "n",
"id": "preferences",
"children": [
{
"mnemonic": "P",
"id": "package-settings",
"children": [
{
"caption": "Diffable",
"children": [
// MARK: To not seek how to implement settings right when it will require some.
{
"caption": "Settings",
"args": {
"base_file": "${packages}/Diffable/Diffable.sublime-settings",
"default": "// Settings in here override those in \"Diffable.sublime-settings\"\n{\n\n}\n"
},
"command": "edit_settings",
},
{
"caption": "Key Bindings",
"args": {
"base_file": "${packages}/Diffable/Default.sublime-keymap",
"user_file": "${packages}/User/Default (${platform}).sublime-keymap",
"default": "[\n\t$0\n]\n",
},
"command": "edit_settings"
},
]
}
]
}
]
}
]