From e497c51bb4af336e18fe5c5b8a3cce33afda180f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Thu, 27 Oct 2016 00:46:55 +0200 Subject: view: use more lightweight default white space replacement symbols While the replacement symbols are still not run-time configurable, the new defaults should hopefully please more people. Close #401 --- view.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view.c b/view.c index 1d620de..5eab97f 100644 --- a/view.c +++ b/view.c @@ -103,10 +103,10 @@ static const SyntaxSymbol symbols_none[] = { }; static const SyntaxSymbol symbols_default[] = { - [SYNTAX_SYMBOL_SPACE] = { "\xC2\xB7" }, - [SYNTAX_SYMBOL_TAB] = { "\xE2\x96\xB6" }, + [SYNTAX_SYMBOL_SPACE] = { "·" /* Middle Dot U+00B7 */ }, + [SYNTAX_SYMBOL_TAB] = { "›" /* Single Right-Pointing Angle Quotation Mark U+203A */ }, [SYNTAX_SYMBOL_TAB_FILL] = { " " }, - [SYNTAX_SYMBOL_EOL] = { "\xE2\x8F\x8E" }, + [SYNTAX_SYMBOL_EOL] = { "↵" /* Downwards Arrow with Corner Leftwards U+21B5 */ }, [SYNTAX_SYMBOL_EOF] = { "~" }, }; -- cgit v1.2.3