You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PackageDev: Edit Current Color Scheme command generates an error dialog if your color_scheme preference is set just to the name of a color scheme file instead of a full resource file path.
Looking in PackageDev/plugins_/color_scheme_dev.py, the reason seems to be that the command creates a ResourcePath() based on the value of the setting, and then tries to use it to come up with the appropriate paths. However when the setting doesn't contain a path, this ends up with a filename that's not valid:
In order for the command to work you need to edit the color scheme preference to include a full package resource spec or use UI: Select Color Scheme to modify the color_scheme setting for you, since that command always uses a full resource filename when it modifies the setting.
The text was updated successfully, but these errors were encountered:
The
PackageDev: Edit Current Color Scheme
command generates an error dialog if yourcolor_scheme
preference is set just to the name of a color scheme file instead of a full resource file path.Looking in
PackageDev/plugins_/color_scheme_dev.py
, the reason seems to be that the command creates aResourcePath()
based on the value of the setting, and then tries to use it to come up with the appropriate paths. However when the setting doesn't contain a path, this ends up with a filename that's not valid:In order for the command to work you need to edit the color scheme preference to include a full package resource spec or use
UI: Select Color Scheme
to modify thecolor_scheme
setting for you, since that command always uses a full resource filename when it modifies the setting.The text was updated successfully, but these errors were encountered: