branch: master
commit bec9889de7bf48d28826039880cec9bfad24a628
Author: Dmitry Gutov <[email protected]>
Commit: Dmitry Gutov <[email protected]>
Define diff-hl-margin-unknown and diff-hl-margin-ignored
For diff-hl-dired-mode together with diff-hl-margin-mode
Reported in #92.
---
diff-hl-margin.el | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/diff-hl-margin.el b/diff-hl-margin.el
index 4ca2a7e..dfc1928 100644
--- a/diff-hl-margin.el
+++ b/diff-hl-margin.el
@@ -56,6 +56,14 @@
'((default :inherit diff-hl-change))
"Face used to highlight changed lines on the margin.")
+(defface diff-hl-margin-ignored
+ '((default :inherit dired-ignored))
+ "Face used to highlight changed lines on the margin.")
+
+(defface diff-hl-margin-unknown
+ '((default :inherit dired-ignored))
+ "Face used to highlight changed lines on the margin.")
+
(defcustom diff-hl-margin-symbols-alist
'((insert . "+") (delete . "-") (change . "!")
(unknown . "?") (ignored . "i"))