Skip to content

Commit

Permalink
Merge pull request bollu#29 from drKnoxy/patch-2
Browse files Browse the repository at this point in the history
platform specific keymaps declarations
  • Loading branch information
bollu committed Sep 15, 2014
2 parents 9435c1d + c02b5cb commit e5030ca
Showing 1 changed file with 32 additions and 11 deletions.
43 changes: 32 additions & 11 deletions Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,38 @@
"children":
[
{ "caption": "-" },
{
"command": "open_file",
"args": {"file": "${packages}/Sublime Bookmarks/Default.sublime-keymap"},
"caption": "Key Bindings – Default"
},
{
"command": "open_file",
"args": {"file": "${packages}/User/Default.sublime-keymap"},
"caption": "Key Bindings – User"
},
{ "caption": "-" }
{
"command": "open_file",
"args": {
"file": "${packages}/Sublime Bookmarks/Default (OSX).sublime-keymap",
"platform": "OSX"
},
"caption": "Key Bindings – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/Sublime Bookmarks/Default (Linux).sublime-keymap",
"platform": "Linux"
},
"caption": "Key Bindings – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/Sublime Bookmarks/Default (Windows).sublime-keymap",
"platform": "Windows"
},
"caption": "Key Bindings – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default.sublime-keymap"
},
"caption": "Key Bindings – User"
},
{ "caption": "-" }
]
}
]
Expand Down

0 comments on commit e5030ca

Please sign in to comment.