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;








0















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?










share|improve this question






















  • 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

















0















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?










share|improve this question






















  • 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













0












0








0








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 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
















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












2 Answers
2






active

oldest

votes


















4














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 }.






share|improve this answer























  • 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


















3














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






share|improve this answer























    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
    );



    );













    draft saved

    draft discarded


















    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









    4














    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 }.






    share|improve this answer























    • 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















    4














    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 }.






    share|improve this answer























    • 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













    4












    4








    4







    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 }.






    share|improve this answer













    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 }.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    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

















    • 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













    3














    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






    share|improve this answer



























      3














      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






      share|improve this answer

























        3












        3








        3







        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






        share|improve this answer













        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







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 24 at 15:40









        RomainValeriRomainValeri

        6,56421435




        6,56421435



























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript