Skip to content

Commit 4006c3d

Browse files
committed
Menu supported
1 parent 9c588f5 commit 4006c3d

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

Context.sublime-menu

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[{
2+
"id": "insert_copyright",
3+
"command": "custominsert",
4+
"args": {
5+
"action": "copyright"
6+
},
7+
"caption": "Insert Copyright"
8+
}]

Main.sublime-menu

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[
2+
{
3+
"id": "edit",
4+
"children":
5+
[
6+
{"id": "custom_insert","caption":"Custominsert" ,"children":[
7+
{"command":"custominsert","caption":"Copyright","args":{"action":"copyright"}},
8+
{"command":"custominsert","caption":"HTML Stub","args":{"action":"html"}},
9+
{"command":"custominsert","caption":"Date&time","args":{"action":"datetime"}},
10+
{"command":"custominsert","caption":"Signature","args":{"action":"me"}}
11+
]}
12+
]
13+
},
14+
{
15+
"caption": "Preferences",
16+
"mnemonic": "n",
17+
"id": "preferences",
18+
"children":
19+
[
20+
{
21+
"caption": "Package Settings",
22+
"mnemonic": "P",
23+
"id": "package-settings",
24+
"children":
25+
[
26+
{
27+
"caption": "Custominsert",
28+
"children":
29+
[
30+
{
31+
"command": "open_file",
32+
"args": {"file": "${packages}/Custominsert/README.md"},
33+
"caption": "README"
34+
},
35+
{ "caption": "-" },
36+
{
37+
"command": "open_file",
38+
"args": {"file": "${packages}/Custominsert/Custominsert.sublime-settings"},
39+
"caption": "Settings – Default"
40+
},
41+
{
42+
"command": "open_file",
43+
"args": {"file": "${packages}/User/Custominsert.sublime-settings"},
44+
"caption": "Settings – User"
45+
}
46+
]
47+
}
48+
]
49+
}
50+
]
51+
}
52+
]

0 commit comments

Comments
 (0)