aboutsummaryrefslogtreecommitdiff
path: root/ui.h
diff options
context:
space:
mode:
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