aboutsummaryrefslogtreecommitdiff
path: root/ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui.h')
-rw-r--r--ui.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui.h b/ui.h
index 92123db..62a79dd 100644
--- a/ui.h
+++ b/ui.h
@@ -10,8 +10,9 @@ enum UiLayout {
};
enum UiOption {
- UI_OPTION_LINE_NUMBERS_NONE,
- UI_OPTION_LINE_NUMBERS_ABSOLUTE,
+ UI_OPTION_LINE_NUMBERS_NONE = 0,
+ UI_OPTION_LINE_NUMBERS_ABSOLUTE = 1 << 0,
+ UI_OPTION_LINE_NUMBERS_RELATIVE = 1 << 1,
};
#include <stdbool.h>