Skip to content

Commit ecc6939

Browse files
committed
Add menu items for the plugin settings
1 parent 266c6a2 commit ecc6939

File tree

1 file changed

+71
-6
lines changed

1 file changed

+71
-6
lines changed

Main.sublime-menu

Lines changed: 71 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,74 @@
11
[
2-
{
3-
"id": "goto",
4-
"children":
5-
[
6-
{ "command": "typescript_nav_to", "caption": "Navigate to TypeScript Symbol..."}
2+
{
3+
"id": "goto",
4+
"children": [
5+
{
6+
"command": "typescript_nav_to",
7+
"caption": "Navigate to TypeScript Symbol..."
8+
}
9+
]
10+
},
11+
{
12+
"id": "preferences",
13+
"children": [
14+
{
15+
"id": "package-settings",
16+
"children": [
17+
{
18+
"caption": "TypeScript",
19+
"children": [
20+
{
21+
"command": "open_file",
22+
"args": {
23+
"file": "${packages}/TypeScript/Preferences.sublime-settings"
24+
},
25+
"caption": "Plugin Settings – Default"
26+
},
27+
{
28+
"command": "open_file",
29+
"args": {
30+
"file": "${packages}/User/Preferences.sublime-settings"
31+
},
32+
"caption": "Plugin Settings – User"
33+
},
34+
{
35+
"caption": "-"
36+
},
37+
{
38+
"command": "open_file",
39+
"args": {
40+
"file": "${packages}/TypeScript/TypeScript.sublime-settings"
41+
},
42+
"caption": "TypeScript Settings – Default"
43+
},
44+
{
45+
"command": "open_file",
46+
"args": {
47+
"file": "${packages}/User/TypeScript.sublime-settings"
48+
},
49+
"caption": "TypeScript Settings – User"
50+
},
51+
{
52+
"caption": "-"
53+
},
54+
{
55+
"command": "open_file",
56+
"args": {
57+
"file": "${packages}/TypeScript/TypeScriptReact.sublime-settings"
58+
},
59+
"caption": "TypeScriptReact Settings – Default"
60+
},
61+
{
62+
"command": "open_file",
63+
"args": {
64+
"file": "${packages}/User/TypeScriptReact.sublime-settings"
65+
},
66+
"caption": "TypeScriptReact Settings – User"
67+
}
68+
]
69+
}
770
]
8-
}
71+
}
72+
]
73+
}
974
]

0 commit comments

Comments
 (0)