-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMain.sublime-menu
More file actions
114 lines (114 loc) · 3.11 KB
/
Main.sublime-menu
File metadata and controls
114 lines (114 loc) · 3.11 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[
{
"caption": "Tools",
"id": "tools",
"mnemonic": "T",
"children": [
{
"caption": "PackageSync",
"id": "packageSync",
"children": [
{
"caption": "Backup/Restore",
"id": "packageSyncLocal",
"children": [
{
"caption": "Backup Packages To Zip (Recommended)",
"command": "psync_local_backup_zip"
},
{
"caption": "Restore Packages From Zip (Recommended)",
"command": "psync_local_restore_zip"
},
{
"caption": "Backup Packages To Folder",
"command": "psync_local_backup_folder"
},
{
"caption": "Restore Packages From Folder",
"command": "psync_local_restore_folder"
},
{
"caption": "Backup Installed Packages List Only",
"command": "psync_local_backup_list"
},
{
"caption": "Restore Installed Packages List Only",
"command": "psync_local_restore_list"
}
]
},
{
"caption": "Sync Online",
"id": "packageSyncOnline",
"children": [
{
"caption": "Enable Syncing",
"command": "psync_online_sync_enable"
},
{
"caption": "Disable Syncing",
"command": "psync_online_sync_disable"
},
{
"caption": "Define Online Sync Folder",
"command": "psync_online_sync_folder"
},
{
"caption": "Push Settings to Online Sync Folder",
"command": "psync_online_sync",
"args": {
"mode": [
"push"
]
}
},
{
"caption": "Pull Settings from Online Sync Folder",
"command": "psync_online_sync",
"args": {
"mode": [
"pull"
]
}
}
]
}
]
}
]
},
{
"caption": "Preferences",
"id": "preferences",
"mnemonic": "n",
"children": [
{
"caption": "Package Settings",
"id": "package-settings",
"mnemonic": "P",
"children": [
{
"caption": "PackageSync",
"children": [
{
"command": "open_file",
"args": {
"file": "${packages}/PackageSync/PackageSync.sublime-settings"
},
"caption": "Settings – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/PackageSync.sublime-settings"
},
"caption": "Settings – User"
}
]
}
]
}
]
}
]