From fa156643375d48ce9b55ba06e571e8a6dd99d486 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 16 Mar 2015 13:03:24 +0000 Subject: [PATCH] el/dot-emacs.el: Better highlighting of M-x occur matches. Organization: Straylight/Edgeware From: Mark Wooding --- el/dot-emacs.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index c042a8c..7d7484e 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -902,6 +902,10 @@ (mdw-define-face region (((type tty) (class color)) :background "blue") (((type tty) (class mono)) :inverse-video t) (t :background "grey30")) +(mdw-define-face match + (((type tty) (class color)) :background "blue") + (((type tty) (class mono)) :inverse-video t) + (t :background "blue")) (mdw-define-face mc/cursor-face (((type tty) (class mono)) :inverse-video t) (t :background "red")) -- [mdw]