close
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gitgutter/TextMate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: textmate/scm-diff-gutter.tmbundle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 10 commits
  • 4 files changed
  • 4 contributors

Commits on Oct 20, 2014

  1. Configuration menu
    Copy the full SHA
    a84751a View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2014

  1. Configuration menu
    Copy the full SHA
    151aa99 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2016

  1. Setup SCM marks when opening a document

    Previously we would only update marks when saving a document.
    
    Currently TextMate will also call our command when creating a new untitled document (in a project which use SCM) so we have to exit early if there is no file name.
    
    Requires TextMate 2.0-beta.9.3
    sorbits committed May 30, 2016
    Configuration menu
    Copy the full SHA
    7205662 View commit details
    Browse the repository at this point in the history
  2. Rename images to have “Template” suffix

    This is required starting with TextMate 2.0-beta.9.3.
    sorbits committed May 30, 2016
    Configuration menu
    Copy the full SHA
    438ffab View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2016

  1. Use circle as image for changed state

    Previously it was difficult to tell the added and the changed image apart, especially when scrolling through source code.
    florianpircher authored and sorbits committed Jun 13, 2016
    Configuration menu
    Copy the full SHA
    da4f506 View commit details
    Browse the repository at this point in the history
  2. Ignore /usr/bin/git if /usr/bin/xcode-select -p fails

    On recent OS versions the /usr/bin/git executable will prompt the user to install git (if Xcode is not already installed) which can cause some user confusion, so we now avoid using /usr/bin/git unless Xcode is installed.
    sorbits committed Jun 13, 2016
    Configuration menu
    Copy the full SHA
    834509f View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2016

  1. Disable external diff programs

    This would open the external program on save, setting the `no-ext-diff` disables this feature.
    infininight committed Aug 10, 2016
    Configuration menu
    Copy the full SHA
    fff73b9 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2016

  1. Refresh gutter on SCM changes

    Requires TextMate 2.0-beta.12.12
    sorbits committed Sep 14, 2016
    Configuration menu
    Copy the full SHA
    ca69ff6 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2017

  1. Fix error in “Update Gutter” for non-UTF-8 encodings

    When the document uses an encoding different from UTF-8, the output of `diff_cmd` may contain characters that are not valid UTF-8. This leads to following error:
    
        Update Gutter:38:in `block in <main>': invalid byte sequence in UTF-8 (ArgumentError)
        	from Update Gutter:35:in `open'
        	from Update Gutter:35:in `<main>'
    
    This is especially annoying because this error pops up every time the document is saved (because the “Update Gutter” command runs on every save).
    
    Setting `ascii-8bit` encoding directly on the io object works around the issue as we only care about the beginning part of the line not the actual contents. Fixes textmate#7.
    noniq authored and infininight committed Aug 8, 2017
    Configuration menu
    Copy the full SHA
    d7dd801 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2018

  1. Do not update the gutter when opening a document

    For documents which have status other than none (or unknown) the command will already be called due to ‘callback.document.did-change-scm-status’.
    
    Requires TextMate 2.0-rc.20.
    sorbits committed Nov 19, 2018
    Configuration menu
    Copy the full SHA
    c5668b6 View commit details
    Browse the repository at this point in the history
Loading