sublime text 2 自动换行设置不起作用

sublime text 2 word wrap setting doesn't work

我把这个 preference.sublime-settings,

{
    "ignored_packages":
     [
        "Vintage"
     ]

        "word_wrap": true
}

但是我保存的时候出现这样的错误:Error trying to parse settings: Unexpected character, expected a comma or closing bracket in ~/Library/Application Support/Sublime Text 2/Packages/User/Preferences.sublime-settings:7:2

这有什么问题?

我应该编辑 Preference.sublime-settings-Default 而不是 User。这就是问题所在。

您可能会遇到这个问题,因为之前的 属性 没有以逗号结尾。确保在输入任何新 属性 之前有一个逗号。就像下图中font_size后面的

"font_size": 11,
"ignored_packages":
[
    "Vintage"
],
"word_wrap": true