Skip to content

Commit 15463fc

Browse files
committed
added main menu item for access to README and keybindings
1 parent a3121c4 commit 15463fc

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed

Main.sublime-menu

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

0 commit comments

Comments
 (0)