Skip to content

Commit 3735ccd

Browse files
author
Kells, TJ
committed
Merge pull request #1 in CC/summiteditor from PLT-378-plugin-settings-menu to master
* commit '4ddef4719021c89e8d01ef02d74c5bdaab5f526c': PLT-378 Add menu options for default/user settings
2 parents eae73b3 + 4ddef47 commit 3735ccd

1 file changed

Lines changed: 78 additions & 24 deletions

File tree

Main.sublime-menu

Lines changed: 78 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,79 @@
11
[
2-
{
3-
"id": "tools",
4-
"children":
5-
[
6-
{
7-
"id": "summiteditor",
8-
"caption": "SummitEditor",
9-
"children":
10-
[
11-
{
12-
"id": "linterinstall",
13-
"command": "linter_install",
14-
"caption": "Install SummitLinter Packages"
15-
},
16-
{
17-
"id": "summit_build_with_args",
18-
"caption": "Build with Arguments",
19-
"command": "summit_build_with_args"
20-
}
21-
]
22-
},
23-
]
24-
}
25-
]
2+
{
3+
"id": "tools",
4+
"children":
5+
[
6+
{
7+
"id": "summiteditor",
8+
"caption": "SummitEditor",
9+
"children":
10+
[
11+
{
12+
"id": "linterinstall",
13+
"command": "linter_install",
14+
"caption": "Install SummitLinter Packages"
15+
},
16+
{
17+
"id": "summit_build_with_args",
18+
"caption": "Build with Arguments",
19+
"command": "summit_build_with_args"
20+
},
21+
{
22+
"caption": "Settings – Default",
23+
"command": "open_file",
24+
"args":
25+
{
26+
"file": "${packages}/SummitEditor/SummitEditor.sublime-settings"
27+
}
28+
},
29+
{
30+
"caption": "Settings – User",
31+
"command": "open_file",
32+
"args":
33+
{
34+
"file": "${packages}/User/SummitEditor.sublime-settings"
35+
}
36+
}
37+
]
38+
}
39+
]
40+
},
41+
{
42+
"caption": "Preferences",
43+
"id": "preferences",
44+
"mnemonic": "n",
45+
"children":
46+
[
47+
{
48+
"caption": "Package Settings",
49+
"id": "package-settings",
50+
"mnemonic": "P",
51+
"children":
52+
[
53+
{
54+
"caption": "SummitEditor",
55+
"children":
56+
[
57+
{
58+
"caption": "Settings – Default",
59+
"command": "open_file",
60+
"args":
61+
{
62+
"file": "${packages}/SummitEditor/SummitEditor.sublime-settings"
63+
}
64+
},
65+
{
66+
"caption": "Settings – User",
67+
"command": "open_file",
68+
"args":
69+
{
70+
"file": "${packages}/User/SummitEditor.sublime-settings"
71+
}
72+
}
73+
]
74+
}
75+
]
76+
}
77+
]
78+
}
79+
]

0 commit comments

Comments
 (0)