diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-10-27 00:46:55 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-10-27 00:46:55 +0200 |
| commit | e497c51bb4af336e18fe5c5b8a3cce33afda180f (patch) | |
| tree | dd6c4f3689bb2b04230ad74e680a967b49d18ad4 /view.c | |
| parent | 8a85e071fdaa7448e6ec595bcbeba633e7a95af6 (diff) | |
| download | vis-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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] = { "~" }, }; |
