Skip to content

Commit 5671586

Browse files
committed
Merge pull request adampresley#34 from tdhsmith/keybind-menu
Add keybinding settings to menu
2 parents c2f55c2 + 6c25e26 commit 5671586

File tree

1 file changed

+53
-4
lines changed

1 file changed

+53
-4
lines changed

Main.sublime-menu

Lines changed: 53 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"mnemonic": "T",
55
"id": "tools",
66
"children":
7-
[
7+
[
88
{
99
"command": "view_in_browser",
1010
"caption": "View in Browser"
@@ -28,20 +28,69 @@
2828
"children":
2929
[
3030
{
31-
"command": "open_file",
31+
"command": "open_file",
3232
"args": {"file": "${packages}/View In Browser/View In Browser.sublime-settings"},
3333
"caption": "Settings – Default"
3434
},
3535
{
36-
"command": "open_file",
36+
"command": "open_file",
3737
"args": {"file": "${packages}/User/View In Browser.sublime-settings"},
3838
"caption": "Settings – User"
3939
},
40+
{ "caption": "-" },
41+
{
42+
"command": "open_file",
43+
"args": {
44+
"file": "${packages}/View in Browser/Default (OSX).sublime-keymap",
45+
"platform": "OSX"
46+
},
47+
"caption": "Key Bindings – Default"
48+
},
49+
{
50+
"command": "open_file",
51+
"args": {
52+
"file": "${packages}/View in Browser/Default (Linux).sublime-keymap",
53+
"platform": "Linux"
54+
},
55+
"caption": "Key Bindings – Default"
56+
},
57+
{
58+
"command": "open_file",
59+
"args": {
60+
"file": "${packages}/View in Browser/Default (Windows).sublime-keymap",
61+
"platform": "Windows"
62+
},
63+
"caption": "Key Bindings – Default"
64+
},
65+
{
66+
"command": "open_file",
67+
"args": {
68+
"file": "${packages}/User/Default (OSX).sublime-keymap",
69+
"platform": "OSX"
70+
},
71+
"caption": "Key Bindings – User"
72+
},
73+
{
74+
"command": "open_file",
75+
"args": {
76+
"file": "${packages}/User/Default (Linux).sublime-keymap",
77+
"platform": "Linux"
78+
},
79+
"caption": "Key Bindings – User"
80+
},
81+
{
82+
"command": "open_file",
83+
"args": {
84+
"file": "${packages}/User/Default (Windows).sublime-keymap",
85+
"platform": "Windows"
86+
},
87+
"caption": "Key Bindings – User"
88+
},
4089
{ "caption": "-" }
4190
]
4291
}
4392
]
4493
}
4594
]
46-
}
95+
}
4796
]

0 commit comments

Comments
 (0)