Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Switch off git integration in Sublime Text 3.2

If I want to switch off the GIT integration (aka the slime green line) on the left hand gutter in Sublime text, I just need to switch it to false:

26    "show_git_status": false

However, when setting that in the Preferences, I get the error:

Error trying to parse settings: Unexpected character, expected a comma or closing brackets in Packages\User\Preferences.sublime-settings:26:2

Clearly I'm a comma or bracket(s) short, but I don't know where or what format it should be. Can anyone enlighten me?

like image 261
Ghoul Fool Avatar asked Jan 01 '26 07:01

Ghoul Fool


1 Answers

The problem is that you are missing a comma there in line 26, it should be:

 "show_git_status": false,

After each option there must be either a comma, indicating that there are more config parameters remaining, or a closing bracket }.

like image 154
Lakshitha Wisumperuma Avatar answered Jan 03 '26 06:01

Lakshitha Wisumperuma