emacsorphanage / git-gutter

Emacs port of GitGutter which is Sublime Text Plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Problem with show-paren-mode on unchanged hunks

kriansa opened this issue · comments

This is related to #114 and #115. When using git-gutter + show-paren-mode, it highlights the gutter with a weird color, but only on "unchanged" hunks.

image

I fixed that by copying your fix on #115:

(set-face-attribute 'git-gutter:unchanged nil :background nil :inherit 'default)

I'm not sure if this is a real fix, that's why I'm not opening a pull-request.

Thank you @syohex for this awesome package!

That will be easy enough to change. Thank you for reporting!

I'm merging a fix for this; but note my default theme (zenburn) also overrides the definition of these faces, and while testing I temporarily disabled my theme to make sure I was seeing things the way the package intends.

This is awesome. Thanks @gonewest818 !