I created a Preferences->Package Setting->MarkdownBuild Menu
I created a .menu file for MarkdownBuild to make it easier to edit the Package Preferences. Just save this as Main.sublime-menu in the package folder:
[
{
"caption": "Preferences",
"mnemonic": "n",
"id": "preferences",
"children":
[
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":
[
{
"caption": "MarkdownBuild",
"children":
[
{
"command": "open_file",
"args": { "file": "${packages}/MarkdownBuild/MarkdownBuild.sublime-settings" },
"caption": "Settings - Default"
},
{
"command": "open_file",
"args": { "file": "${packages}/User/MarkdownBuild.sublime-settings" },
"caption": "Settings - User"
}
]
}
]
}
]
}
]
Thanks! I will incorporate it into the package (And more importantly you have taught me how to make a menu item, now I can use it in my other packages)
You're welcome - I just copied it from another package that already had one!
On 7 May 2012 16:54, erinata < [email protected]
wrote:
Thanks! I will incorporate it into the package (And more importantly you have taught me how to make a menu item, now I can use it in my other packages)
Reply to this email directly or view it on GitHub:
https://github.com/erinata/SublimeMarkdownBuild/issues/2#issuecomment-5564034