aboutsummaryrefslogtreecommitdiff
path: root/ui.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-10-12 14:45:52 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-10-14 10:33:26 +0200
commit4285196462b86077c49c87eaee6c25d0d1a710b5 (patch)
treec45c59a22bf94039c669c5cab5ead015439c35e1 /ui.h
parent277c6b4897e11a5449fc1cfab3ab6e83307a7989 (diff)
downloadvis-4285196462b86077c49c87eaee6c25d0d1a710b5.tar.gz
vis-4285196462b86077c49c87eaee6c25d0d1a710b5.tar.xz
view: cleanup whitespace replacement symbol handling
Diffstat (limited to 'ui.h')
-rw-r--r--ui.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui.h b/ui.h
index 1275f37..09eb7bf 100644
--- a/ui.h
+++ b/ui.h
@@ -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