SublimeMarkdownBuild icon indicating copy to clipboard operation
SublimeMarkdownBuild copied to clipboard

I created a Preferences->Package Setting->MarkdownBuild Menu

Open dflock opened this issue 13 years ago • 2 comments

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"
                            }
                        ]
                    }
                ]
            }
        ]
    }
]

dflock avatar May 07 '12 23:05 dflock

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)

erinata avatar May 07 '12 23:05 erinata

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

dflock avatar May 08 '12 00:05 dflock