How can I make a package-specific setting differ by language? It's easy to make general Sublime Text settings differ by language (e.g., I can use Python.sublime-settings to set the number of spaces to indent specific to Python). But I can't figure out how to change a setting for a particular package (whose settings seem to live in a different scope from the general application settings).
What I'm trying to do in particular is to change the "show_transferred_text" parameter in SublimeREPL. In R I need this to be "false" and in Python I need it to be "true." Is there something I can add to the line "show_transferred_text": true in my Python.sublime-settings to indicate that this is a parameter for SublimeREPL? Setting it like that doesn't change the SublimeREPL parameter, again I assume because package-specific settings are in a different scope.
This provides a start that would allow me to write a plugin to do this, but I wonder if it's already supported more simply in ST. Is there a package scope or something that I can add to a key that might let me set package keys directly?