Reputation: 1
i tried to change some of settings in sublime text 2 from Preferences >> Settings - Default | adding a new settings from Settings - User, when i tried to change a value and save it a message appearing to me and its content is ## Error typing to parse settings: Expected value in Packages/U.sser/Preferences.sublime-settings:4:1 ##
Upvotes: 0
Views: 128
Reputation: 2852
One of the settings you're trying to add in the User settings file is missing a value.
The User settings file should be in the format:
{
"settingName": "textValue",
"anotherSetting": numberValue
}
etc
If one of the values is missing you get that error.
Upvotes: 0