A Sublime Text 2/3 plug-in to show information about files in a git repository.
- Gutter Icons indicating inserted, modified or deleted lines
- Diff Popup with details about modified lines
- Status Bar Text with information about file and repository
- Jumping Between Changes to easily navigate between modified lines
Icon | Description |
---|---|
inserted line | |
modified line | |
deleted region borders | |
ignored file | |
untracked file |
It is highly recommended to install GitGutter with Package Control as it automatically installs required dependencies and keeps all packages up to date.
- Install Package Control if you haven't yet.
- Open the command palette (Ctrl+Shift+P for Windows/Linux, Cmd+Shift+P for Mac)
- Search for Package Control: Install Package and hit Enter.
- Type
GitGutter
and press Enter to install it.
If you are interested in testing bleeding edge features you can set up Package Control to install pre-releases by adding GitGutter to install_prereleases
key in the Package Control.sublime-settings
.
"install_prereleases":
[
"GitGutter"
],
The GitGutter-Edge package is replaced by Pre-Releases.
This change was made ...
- to avoid issues with functions which depend on the package name.
- because branch based packages are deprecated by Package Control.
- to have more control about when to publish new features for testing.
๐ If you don't want to wait for Pre-Releases you can pull from master branch directly.
You can clone this repository into your Sublime Text x/Packages
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/
git clone git://github.com/jisaacks/GitGutter.git
cd ~/.config/sublime-text-2/Packages
git clone git://github.com/jisaacks/GitGutter.git
cd "%APPDATA%\Sublime Text 2\Packages"
git clone git://github.com/jisaacks/GitGutter.git
๐ The git
command must be available on the command line.
๐ You may need to add the directory containing git.exe
to your PATH
environment variable.
Some functions of GitGutter depend on the following external libraries to work properly. They are installed automatically for you by Package Control, so normally don't need to care about. But on setups without Package Control you need to make sure they are installed and available in the global namespace of Sublime Text's python interpreter on your own.
๐ On OSX you might need to install the package SublimeFixMacPath.
๐ To manually install pull from the linked repos into ST's Packages folder.
The most common reason for the icons to not show up is likely a problem with GitGutter finding the git
executable on your PATH. Please read the section on the git_binary setting for how to fix that.
The diff popup appears by hovering the mouse over the gutter changes on Sublime Text 3 or can be called from command palette by GitGutter: Show Diff Popup
or via a key binding.
โ popups require Sublime Text 3 Build 3070+
โ mouse hover feature requires Sublime Text 3 Build 3116+
symbol | meaning of the symbol |
---|---|
ร | close the popup |
โค | jump to first change |
โ | jump to previous change |
โ | jump to next change |
โ, โ | enable/disable difference highlighting |
โ | copy the content of the git state |
โฒ | revert changes to the state in git |
GitGutter compares the working copy against the HEAD by default. This behavior can be changed through the command palette.
The following options are available:
- Compare against HEAD
- Compare against particular branch
- Compare against particular tag
- Compare against specific commit
- Compare against specific file commit (current file's history)
- Compare against origin
To change the compare option:
- Open the command palette (Ctrl+Shift+P for Windows/Linux, Cmd+Shift+P for Mac)
- Start typing
GitGutter: Compare against
- You'll see the 5 options listed above, select one with the keyboard and press Enter.
- Choose the branch/tag/commit to compare against.
๐ The changes apply temporarily to the whole repository.
There are commands to jump between modifications. The default key bindings for these commands are:
OS X | Windows / Linux | Description |
---|---|---|
Cmd+Shift+Option+k | Ctrl+Shift+Alt+k | Previous |
Cmd+Shift+Option+j | Ctrl+Shift+Alt+j | Next |
Settings are accessed via the Preferences > Package Settings > GitGutter menu.
Default settings should not be modified, as they are overwritten when GitGutter updates. Copy the relevant settings into GitGutter's user settings file instead.
"debounce_delay": 1000
Delays update of gutter icons by the following amount (in milliseconds). Useful for performance issues. Default 1000 (1 second).
"focus_change_mode": true
GitGutter evaluates changes every time a view gets the focus by default. Set false
to disable evaluation when changing views.
๐ This setting has effect with "live_mode": false
only.
๐ GitGutter always evaluates changes after loading and saving a document.
"live_mode": true
GitGutter evaluates changes every time the file is modified by default. Set false
to disable evaluation after each input.
๐ GitGutter always evaluates changes after loading and saving a document.
"enable_hover_diff_popup": true
โ requires Sublime Text 3 Build 3116+
GitGutter shows a diff popup, when hovering over changes in the gutter. Set false
to disable this popup. You can still open it with a key binding and from the command palette.
"diff_popup_default_mode": "default"
โ requires Sublime Text 3 Build 3070+
The popup displays the previous state of the content under the cursor by "default"
but can be set to "diff"
to highlight the differences between the git state and the editor state.
โ requires Sublime Text 3 Build 3070+
The popup uses the mdpopups library and the corresponding settings are global and not only for GitGutter. Syntax highlighting can be set to match the active color scheme by adding "mdpopups.use_sublime_highlighter": true
to the User settings.
๐ Other settings can be found at mdpopups settings homepage.
๐ User style settings by adding a gitgutter_popup.css
the User directory.
๐ User style settings are accessible via the settings menu.
"show_markers_on_untracked_file": true
GitGutter shows icons on each line for untracked and ignored files by default. Set to false
to hide those icons.
You may need to add scopes (markup.ignored.git_gutter
and markup.untracked.git_gutter
) to your color scheme to color the icons.
"show_in_minimap": 1
GitGutter shows diffs in the minimap on Sublime Text 3 by default. Change show_in_minimap
to one of the following values to disable this feature or change the width of the markers.
value | description |
---|---|
=0 | hide markers |
>1 | width of markers |
-1 | highlight full line |
"git_binary": ""
If git
is not found on PATH by GitGutter the git_binary
setting can be set to the location of the git binary. The value may be either a direct string to a git binary:
"git_binary": "E:\\Portable\\git\\bin\\git.exe"
or it may be a dictionary keyed off what sublime.platform() returns, so it may be customized on a per-platform basis:
"git_binary": {
"default": "",
"linux": "/usr/bin/git",
"windows": "C:/Program Files/Git/cmd/git.exe"
}
It is valid to use environment variables in the setting value, and they will be expanded appropriately.
In a POSIX environment you can run which git
to find the path to git if it is in your path. On Windows, you can use where git
to do the equivalent.
"protected_regions": [
"sublimelinter-warning-gutter-marks",
"sublimelinter-error-gutter-marks",
"bookmarks"
],
To avoid GitGutter from overriding more important gutter icons a list of protected regions can be created, which GitGutter won't add gutter icons to.
๐ You will need to figure out the names of the regions to protect.
"show_status_bar_text": true
GitGutter displays status information about open files in the status bar by default. Set to false
to hide the information.
"status_bar_text": [
"In {{repo}} on {{branch}}",
"{% if compare != 'HEAD' %}, Comparing against {{compare}}{% endif %}",
", File is {{state}}",
"{% if deleted != 0 %}, {{deleted}}-{% endif %}",
"{% if inserted != 0 %}, {{inserted}}+{% endif %}",
"{% if modified != 0 %}, {{modified}}โ {% endif %}"
]
The Status Bar Text is rendered using a fully customizable template from status_bar_text
. The setting is organized as an array of strings for better readability. It is joined and then passed to jinja2.
GitGutter provides the following variables to be used in the template.
Variable | Description |
---|---|
{{repo}} | repository name / folder name containing the .git directory |
{{branch}} | checked out branch you are working on |
{{compare}} | commit/branch/HEAD the file is compared to |
{{state}} | One of committed/modified/ignored/untracked |
{{deleted}} | number of deleted regions |
{{inserted}} | number of inserted lines |
{{modified}} | number of modified lines |
"theme": "Default.gitgutter-theme"
GitGutter provides support for custom gutter icons and diff popup style sheets coming with theme packages. Set theme
to a valid theme file name to activate a different icon set.
GitGutter includes following themes:
- Bars.gitgutter-theme
- Default.gitgutter-theme
- Default HiDPI.gitgutter-theme
To provide a custom theme developers need to add a folder with all required icons and an optional gitgutter_popup.css
file to their package. An empty JSON file <ThemName>.gitgutter-theme
must exist to mark this folder a resource for GitGutter icons.
Sublime Text supports project-specific settings, allowing live_mode
to be enabled or disabled for certain repositories. To make use of this feature just open Project > Edit Project menu and add the settings
key as shown.
{
"folders":
[
{
"path": "src"
}
],
"settings":
{
"live_mode": false
}
}
The colors come from your color scheme .tmTheme file.
If your color scheme file does not define the appropriate colors (or you want to edit them) add an entry that looks like this:
<dict>
<key>name</key>
<string>GitGutter deleted</string>
<key>scope</key>
<string>markup.deleted.git_gutter</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#F92672</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>GitGutter inserted</string>
<key>scope</key>
<string>markup.inserted.git_gutter</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#A6E22E</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>GitGutter changed</string>
<key>scope</key>
<string>markup.changed.git_gutter</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#967EFB</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>GitGutter ignored</string>
<key>scope</key>
<string>markup.ignored.git_gutter</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#565656</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>GitGutter untracked</string>
<key>scope</key>
<string>markup.untracked.git_gutter</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#565656</string>
</dict>
</dict>
Color schemes that already have support for GitGutter include:
- Afterglow
- Baara Dark
- Boxy Theme
- Brackets Color Scheme
- Cobalt2
- Dark Room
- Deep Blue See
- Desert Night
- Flatland
- Fox
- Grandson of Obsidian
- Hitoshi
- Monokai Extended
- Neon Color Scheme
- Neon
- Oblivion
- Perv
- Solarized Colour Theme
- Spacegray
- Specials Board
- Tomorrow Theme
- Underscore Colour Theme
- Wildlife
- Contact me if you want your color scheme listed here. Or do a pull request.
Check out the collection of GitGutter(ish) packages for various editors