我是Sublime Text的新手,我无法在任何地方修复或找到这个问题的答案。
我刚刚安装了Sublime Text
,一开始它运行正常。然后我尝试在Preferences->下更改一些设置。设置用户,例如字体大小。当我保存时,它返回错误:
尝试解析设置时出错:C:\ Users \ Michael \ AppData \ Roaming \ Sublime Text 2 \ Packages \ User \ Preferences.sublime-settings:18:1
中的预期字符串
(安装了我的ST包)
现在,每当我尝试打开Sublime Text 2时,它都会显示相同的错误消息,并且不会运行。
我卸载并重新安装ST,问题仍然存在(在我尝试更改我的首选项后)。
我在Windows 7上运行Sublime Text 2.0.2
。
任何关于如何解决这个问题的见解(或者更好的是,为什么这个问题首先出现)将是最受欢迎的。
编辑:这是偏好文件的内容(我不知道如何上传文件本身,如果可能的话)
// Settings in here override those in "Default/Preferences.sublime-settings", and
// are overridden in turn by file type specific settings.
// "User/Preferences.sublime-settings", which overrides the settings in here.
//
// Settings may also be placed in file type specific options files, for
// example, in Packages/Python/Python.sublime-settings for python files.
{
// Sets the colors used within the text area
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
// Note that the font_face and font_size are overriden in the platform
// specific settings file, for example, "Preferences (Linux).sublime-settings".
// Because of this, setting them here will have no effect: you must set them
// in your User File Preferences.
"font_face": "",
"font_size": 10,
}
答案 0 :(得分:2)
删除最后一个逗号。变化:
"font_size": 10,
到:
"font_size": 10
答案 1 :(得分:0)
我刚遇到同样的问题,我通过以下方式解决了这个问题: