Is there any way to have project specific package settings in Sublime Text 2?

sublimetext2

Solution

Try out ProjectSpecific package from PackageControl. I just have added support for project specific package settings.

Assume you want to turn on "console_log" for scope_hunter.sublime-settings for only current project, then (after installing ProjectSpecific), add following lines to your .sublime-project file:

{
    ...
    "settings": {
        "project-specific": {
            "sublime-settings": {
                "scope_hunter": {
                    "console_log": true
                }
            }
        }
    }
}

Problem

I've installed JSMinifier via Sublime Text 2's package manager and I'd like to set the compiler settings for a specific project. I can find how to set package specific settings, and I know how to do project specific settings, but is there any way to set project specific package settings?

Original source