Skip to content
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.

josa42/atom-blame

Repository files navigation

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