aboutsummaryrefslogtreecommitdiff
path: root/view.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-10-27 00:46:55 +0200
committerMarc André Tanner <mat@brain-dump.org>2016-10-27 00:46:55 +0200
commite497c51bb4af336e18fe5c5b8a3cce33afda180f (patch)
treedd6c4f3689bb2b04230ad74e680a967b49d18ad4 /view.c
parent8a85e071fdaa7448e6ec595bcbeba633e7a95af6 (diff)
downloadvis-e497c51bb4af336e18fe5c5b8a3cce33afda180f.tar.gz
vis-e497c51bb4af336e18fe5c5b8a3cce33afda180f.tar.xz
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
Diffstat (limited to 'view.c')
-rw-r--r--view.c6
1 files 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] = { "~" },
};