2017-02-28 55 views
0

Sublime Text建議我關閉檢測緩慢插件,因爲我因爲插件緩慢而被給出錯誤。試圖禁用detect_slow_plugins [Sublime Text 2] [MAC]

根據這一建議https://forum.sublimetext.com/t/slow-plugin-warning/4598

我去了我的用戶首選項文件看起來像這樣:

{ 
    "color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme" 
} 

,但每當我添加「detect_slow_plugins」:假(它看起來像這樣)

{ 
    "color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme" 
    "detect_slow_plugins": false, 
} 

這個錯誤是retu內容:

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:3:2 

你們有什麼想法可以關閉detect_slow_Errors嗎?

回答

1

color_scheme行之後沒有逗號;它應該是:

{ 
    "color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", 
    "detect_slow_plugins": false, 
} 

錯誤應該已經相當自我解釋...