From c11ac343004b97345fcd48e58177458ece376b46 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 7 Jan 2012 22:33:05 +0000 Subject: [PATCH] el/dot-emacs.el: Colour for continuation and truncation display marks. Organization: Straylight/Edgeware From: Mark Wooding Makes them stand out better. --- el/dot-emacs.el | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index c972adc..1734526 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -997,9 +997,15 @@ (mdw-define-face whizzy-error-face ;; Ellipses used to indicate hidden text (and similar). (mdw-define-face mdw-ellipsis-face (((type tty)) :foreground "blue") (t :foreground "grey60")) -(let ((dot (make-glyph-code ?. 'mdw-ellipsis-face))) +(let ((dollar (make-glyph-code ?$ 'mdw-ellipsis-face)) + (backslash (make-glyph-code ?\ 'mdw-ellipsis-face)) + (dot (make-glyph-code ?. 'mdw-ellipsis-face)) + (bar (make-glyph-code ?| mdw-ellipsis-face))) + (set-display-table-slot standard-display-table 0 dollar) + (set-display-table-slot standard-display-table 1 backslash) (set-display-table-slot standard-display-table 4 - (vector dot dot dot))) + (vector dot dot dot)) + (set-display-table-slot standard-display-table 5 bar)) ;;;-------------------------------------------------------------------------- ;;; C programming configuration. -- [mdw]