diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2015-10-12 14:45:52 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2015-10-14 10:33:26 +0200 |
| commit | 4285196462b86077c49c87eaee6c25d0d1a710b5 (patch) | |
| tree | c45c59a22bf94039c669c5cab5ead015439c35e1 /ui.h | |
| parent | 277c6b4897e11a5449fc1cfab3ab6e83307a7989 (diff) | |
| download | vis-4285196462b86077c49c87eaee6c25d0d1a710b5.tar.gz vis-4285196462b86077c49c87eaee6c25d0d1a710b5.tar.xz | |
view: cleanup whitespace replacement symbol handling
Diffstat (limited to 'ui.h')
| -rw-r--r-- | ui.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -14,9 +14,13 @@ enum UiLayout { }; enum UiOption { - UI_OPTION_LINE_NUMBERS_NONE = 0, UI_OPTION_LINE_NUMBERS_ABSOLUTE = 1 << 0, UI_OPTION_LINE_NUMBERS_RELATIVE = 1 << 1, + UI_OPTION_SYMBOL_SPACE = 1 << 2, + UI_OPTION_SYMBOL_TAB = 1 << 3, + UI_OPTION_SYMBOL_TAB_FILL = 1 << 4, + UI_OPTION_SYMBOL_EOL = 1 << 5, + UI_OPTION_SYMBOL_EOF = 1 << 6, }; #define UI_STYLES_MAX 64 |
