Switch off git integration in Sublime Text 3.2GIT integration in Sublime Text 3.2 still showing upGit checkout: updating paths is incompatible with switching branchesWhat is the Sign Off feature in Git for?Open Sublime Text from Terminal in macOSSublime Text: Select all instances of a variable and edit variable nameReplace n with actual new line in Sublime TextSearch in all files in a project in Sublime Text 3Sublime Text 3: Error trying to parse settings, colons highlightedSublime Text 3 - Installed theme isn't listedSublime Text error with: PackagesUserPlain text.sublime-settings:1:27Why I found this error during opening sublime text
Is the term 'open source' a trademark?
Select items in a list that contain criteria #2
PL/SQL function to receive a number and return its binary format
Strange symbol for two functions
Is any name of Vishnu Siva?
Smooth switching between 12v batteries, with toggle switch
How were concentration and extermination camp guards recruited?
How can drunken, homicidal elves successfully conduct a wild hunt?
From the list of 3-tuples, how can I select tuples which contain one for more nines?
Trapping Rain Water
Does an ice chest packed full of frozen food need ice?
Is it possible to express disjunction through conjunction and implication?
How do I write "Show, Don't Tell" as a person with Asperger Syndrome?
What is the purpose of building foundations?
Etymology of 'calcit(r)are'?
Translating 'Liber'
Subtables with equal width?
When conversion from Integer to Single may lose precision
How bad would a partial hash leak be, realistically?
Was the Tamarian language in "Darmok" inspired by Jack Vance's "The Asutra"?
Traffic law UK, pedestrians
Are "living" organ banks practical?
Did the first version of Linux developed by Linus Torvalds have a GUI?
Where does this pattern of naming products come from?
Switch off git integration in Sublime Text 3.2
GIT integration in Sublime Text 3.2 still showing upGit checkout: updating paths is incompatible with switching branchesWhat is the Sign Off feature in Git for?Open Sublime Text from Terminal in macOSSublime Text: Select all instances of a variable and edit variable nameReplace n with actual new line in Sublime TextSearch in all files in a project in Sublime Text 3Sublime Text 3: Error trying to parse settings, colons highlightedSublime Text 3 - Installed theme isn't listedSublime Text error with: PackagesUserPlain text.sublime-settings:1:27Why I found this error during opening sublime text
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
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 PackagesUserPreferences.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?
git sublimetext3
add a comment |
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 PackagesUserPreferences.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?
git sublimetext3
The green line in the gutter is from the incremental diff. If you don't want that, you need to setmini_diff
tofalse
. The git integration works independently of the mini diff; mini diff also applies to files not under git.
– OdatNurd
Mar 26 at 13:45
add a comment |
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 PackagesUserPreferences.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?
git sublimetext3
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 PackagesUserPreferences.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?
git sublimetext3
git sublimetext3
asked Mar 24 at 15:30
Ghoul FoolGhoul Fool
2,41073781
2,41073781
The green line in the gutter is from the incremental diff. If you don't want that, you need to setmini_diff
tofalse
. The git integration works independently of the mini diff; mini diff also applies to files not under git.
– OdatNurd
Mar 26 at 13:45
add a comment |
The green line in the gutter is from the incremental diff. If you don't want that, you need to setmini_diff
tofalse
. The git integration works independently of the mini diff; mini diff also applies to files not under git.
– OdatNurd
Mar 26 at 13:45
The green line in the gutter is from the incremental diff. If you don't want that, you need to set
mini_diff
to false
. The git integration works independently of the mini diff; mini diff also applies to files not under git.– OdatNurd
Mar 26 at 13:45
The green line in the gutter is from the incremental diff. If you don't want that, you need to set
mini_diff
to false
. The git integration works independently of the mini diff; mini diff also applies to files not under git.– OdatNurd
Mar 26 at 13:45
add a comment |
2 Answers
2
active
oldest
votes
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 }
.
It's the line above that needed the comma, but I realised that was where I was going wrong :)
– Ghoul Fool
Mar 24 at 16:00
add a comment |
Since you added a line, it seems that you just forgot to add a comma at the end of the previous line.
OK :
"some_property": value,
"some_other_property": value,
"show_git_status": false
NOT OK :
"some_property": value,
"some_other_property": value
"show_git_status": false
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325394%2fswitch-off-git-integration-in-sublime-text-3-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
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 }
.
It's the line above that needed the comma, but I realised that was where I was going wrong :)
– Ghoul Fool
Mar 24 at 16:00
add a comment |
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 }
.
It's the line above that needed the comma, but I realised that was where I was going wrong :)
– Ghoul Fool
Mar 24 at 16:00
add a comment |
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 }
.
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 }
.
answered Mar 24 at 15:41
Shehan WisumperumaShehan Wisumperuma
15119
15119
It's the line above that needed the comma, but I realised that was where I was going wrong :)
– Ghoul Fool
Mar 24 at 16:00
add a comment |
It's the line above that needed the comma, but I realised that was where I was going wrong :)
– Ghoul Fool
Mar 24 at 16:00
It's the line above that needed the comma, but I realised that was where I was going wrong :)
– Ghoul Fool
Mar 24 at 16:00
It's the line above that needed the comma, but I realised that was where I was going wrong :)
– Ghoul Fool
Mar 24 at 16:00
add a comment |
Since you added a line, it seems that you just forgot to add a comma at the end of the previous line.
OK :
"some_property": value,
"some_other_property": value,
"show_git_status": false
NOT OK :
"some_property": value,
"some_other_property": value
"show_git_status": false
add a comment |
Since you added a line, it seems that you just forgot to add a comma at the end of the previous line.
OK :
"some_property": value,
"some_other_property": value,
"show_git_status": false
NOT OK :
"some_property": value,
"some_other_property": value
"show_git_status": false
add a comment |
Since you added a line, it seems that you just forgot to add a comma at the end of the previous line.
OK :
"some_property": value,
"some_other_property": value,
"show_git_status": false
NOT OK :
"some_property": value,
"some_other_property": value
"show_git_status": false
Since you added a line, it seems that you just forgot to add a comma at the end of the previous line.
OK :
"some_property": value,
"some_other_property": value,
"show_git_status": false
NOT OK :
"some_property": value,
"some_other_property": value
"show_git_status": false
answered Mar 24 at 15:40
RomainValeriRomainValeri
6,56421435
6,56421435
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325394%2fswitch-off-git-integration-in-sublime-text-3-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
The green line in the gutter is from the incremental diff. If you don't want that, you need to set
mini_diff
tofalse
. The git integration works independently of the mini diff; mini diff also applies to files not under git.– OdatNurd
Mar 26 at 13:45