git.y1.nz

mtm

Ncurses-based terminal multiplexer
download: https://git.y1.nz/archives/mtm.tar.gz
Files | Log | Refs

commit 4594e30c3c9c7cbc927da5627108cea68b9a4211
parent 68250245722212e94fac6751e8bf7b77ddb057d2
Author: Rob King <jking@deadpixi.com>
Date:   Sat, 27 Jul 2019 22:49:31 -0500

Fix ACS for control pictures.

Diffstat:
Mconfig.def.h16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -112,10 +112,10 @@ CHARMAP CSET_GRAPH[] ={ /* Graphics Set One */ {L'>', 0x2265}, {L'`', 0x25c6}, {L'a', 0x2592}, - {L'b', L'\t'}, - {L'c', L'\f'}, - {L'd', L'\r'}, - {L'e', L'\n'}, + {L'b', 0x2409}, + {L'c', 0x240c}, + {L'd', 0x240d}, + {L'e', 0x240a}, {L'f', 0x00b0}, {L'g', 0x00b1}, {L'h', 0x2592}, @@ -161,10 +161,10 @@ CHARMAP CSET_GRAPH[] ={ /* Graphics Set One */ {L'>', L'>'}, {L'`', L'+'}, {L'a', L':'}, - {L'b', L'\t'}, - {L'c', L'\f'}, - {L'd', L'\r'}, - {L'e', L'\n'}, + {L'b', L' '}, + {L'c', L' '}, + {L'd', L' '}, + {L'e', L' '}, {L'f', L'\''}, {L'g', L'#'}, {L'h', L'#'},

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.