help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Face for window separator


From: Johan Bockgård
Subject: Re: Face for window separator
Date: Sat, 19 May 2007 15:21:09 +0200
User-agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.1.50 (gnu/linux)

cothrige <cothrige@yahoo.com> writes:

> The separator which is between the left and right window is white on
> black, rather than red on black, which makes it blend in with the
> window contents. I would like to set this to match my mode-line, but
> have been unable to find any way to do this. Perhaps there is a
> particular face used for this which I can tweak, as I did mode-line?

In Emacs 22 there is (`vertical-border'). For Emacs 21, use something
like this:

    (unless standard-display-table
      (setq standard-display-table (make-display-table)))
    (set-display-table-slot
     standard-display-table 'vertical-border
     (+ ?| (lsh (face-id 'mode-line) 19)))

-- 
Johan Bockgård


reply via email to

[Prev in Thread] Current Thread [Next in Thread]