Skip to content

Commit

Permalink
add Haxe Package Settings menu
Browse files Browse the repository at this point in the history
  • Loading branch information
roaoao committed Jul 5, 2015
1 parent 810b34b commit ece380e
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions Support/Main.sublime-menu
@@ -0,0 +1,67 @@
[
{

"id": "preferences",
"children":
[
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":
[
{
"caption": "Haxe",
"children":
[
{
"command": "open_file",
"args": {"file": "${packages}/Haxe/Support/Haxe.sublime-settings"},
"caption": "Settings - Default"
},
{
"command": "open_file",
"args": {"file": "${packages}/User/Haxe.sublime-settings"},
"caption": "Settings – User"
},
{ "caption": "-" },
{
"command": "open_file",
"args": {
"file": "${packages}/Haxe/Support/Default.sublime-keymap"
},
"caption": "Key Bindings – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (OSX).sublime-keymap",
"platform": "OSX"
},
"caption": "Key Bindings – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (Linux).sublime-keymap",
"platform": "Linux"
},
"caption": "Key Bindings – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (Windows).sublime-keymap",
"platform": "Windows"
},
"caption": "Key Bindings – User"
},
{ "caption": "-" }
]
}
]
}
]
}

]

0 comments on commit ece380e

Please sign in to comment.