emacs-devel
[Top][All Lists]
Advanced

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

How to change window divider in text terminal?


From: Akib Azmain Turja
Subject: How to change window divider in text terminal?
Date: Thu, 28 Jul 2022 17:14:46 +0600

From (elisp) Display Tables:

--8<---------------cut here---------------start------------->8---
   The ordinary elements of the display table are indexed by character
codes; the element at index C says how to display the character code C.
The value should be ‘nil’ (which means to display the character C
according to the usual display conventions; *note Usual Display::), or a
vector of glyph codes (which means to display the character C as those
glyphs; *note Glyphs::).

[...]

   The display table also has six “extra slots” which serve special
purposes.  Here is a table of their meanings; ‘nil’ in any slot means to
use the default for that slot, as stated below.

[...]

5
     The glyph used to draw the border between side-by-side windows (the
     default is ‘|’).  *Note Splitting Windows::.  This currently has
     effect only on text terminals; on graphical terminals, if vertical
     scroll bars are supported and in use, a scroll bar separates the
     two windows, and if there are no vertical scroll bars and no
     dividers (*note Window Dividers::), Emacs uses a thin line to
     indicate the border.
--8<---------------cut here---------------end--------------->8---

But none of the following work for me:

--8<---------------cut here---------------start------------->8---
(set-display-table-slot standard-display-table 5 ?|)
(set-display-table-slot standard-display-table 5 (make-glyph-code ?|))
(set-display-table-slot standard-display-table 'vertical-border ?|)
(set-display-table-slot standard-display-table 'vertical-border
                        (make-glyph-code ?|))
--8<---------------cut here---------------end--------------->8---

And I'm pretty much sure that this happens because the character '|' is
hardcoded in "build_frame_matrix_from_leaf_window" in "src/dispnew.c".

-- 
Akib Azmain Turja

Find me on Mastodon at @akib@hostux.social.

This message is signed by me with my GnuPG key.  It's fingerprint is:

    7001 8CE5 819F 17A3 BBA6  66AF E74F 0EFA 922A E7F5

Attachment: signature.asc
Description: PGP signature


reply via email to

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