josa42 / atom-blame

Show git blame as a gutter in Atom editor

Home Page:https://atom.io/packages/blame

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

blame package

Build Status Plugin installs! Package version! Dependencies! Project: Not maintained

Show blame annotations.


Note: the repository is not maintained. If you would like to take over, please open an issue!


Supported vcs:

  • git
  • mercurial (experimental)
  • subversion (experimental)

Customize Gutter colors

You can customize the gutter colors by adding the following lines to your stylesheet (~/.atom/styles.less).

atom-text-editor .blame-gutter {
  .hash   { color: white; }
  .date   { color: white; }
  .author { color: white; }
}

Custom repository browser

To use a custom repository browser (like gitweb), set an URL template in the git config file:

git config --local --add atom-blame.browser-url "http://example.com/gitweb/?p=my_repo.git;a=commit;h={hash}"

{hash} will be replaced with the actual short-format hash of selected commit. {long-hash} will be replaced with the long-format hash of selected commit.

Todo:

  • Handle Folding right

About

Show git blame as a gutter in Atom editor

https://atom.io/packages/blame

License:MIT License


Languages

Language:JavaScript 92.7%Language:CSS 7.3%