-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
magit-blame headers inherit stipple face with starting-column = 0. #67
Comments
Can you see if |
Otherwise, go to a line just after one of the headers, and |
Do you have |
It's nil. My config is super basic: (setopt indent-bars-prefer-character t)
(setopt indent-bars-no-stipple-char ?│)
(setopt indent-bars-depth-update-delay 0.3) ; default 0.075
(setopt indent-bars-color-by-depth nil)
(setopt indent-bars-color '(highlight :face-bg t :blend 0.325)) ; default '(highlight :face-bg t :blend 0.325)
(setopt indent-bars-treesit-support t)
(require 'indent-bars-ts)
(setopt indent-bars-treesit-update-delay 0.3) ; default 0.125
(setopt indent-bars-treesit-ignore-blank-lines-types '("module")) |
I meant this for @aburlot. I suspect they do. If so, this looks to me like a bug in Please open an issue with magit and mention the need for a |
Yes! When set back to |
Yes, please do and link here. Magit should not inherit the |
I cannot spot how Magit does that. It appears you do. If so, please tell me. I did this (defun magit-blame--update-heading-overlay (ov)
(overlay-put
ov 'before-string (propertize "fake heading\n" 'face nil))) and the lines where still there. |
Oh right, a nil-face does not reset face attributes, but is instead ignored. Even switching magit's
The best approach might be just to add (let ((ov (make-overlay (point) (point)))
(d (propertize "fake heading\n"
'font-lock-face
'((:foreground "red" :background "black") default))))
(overlay-put ov 'before-string d)) This would also reset other attributes like |
Fixed in magit. |
Thanks for your help! |
Thanks for the fix (and magit, used daily)! |
I hesitated to end the list of faces with |
I agree, it seems like there should be a better way to "negatively override" |
When I turn
magit-blame
on, I have some issue reading it:Looks like some bars are introduced on every character.
The text was updated successfully, but these errors were encountered: