summaryrefslogtreecommitdiff
path: root/fzy.c
diff options
context:
space:
mode:
Diffstat (limited to 'fzy.c')
-rw-r--r--fzy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fzy.c b/fzy.c
index 2dcf5aa..86c4de7 100644
--- a/fzy.c
+++ b/fzy.c
@@ -9,6 +9,8 @@
#include "tty.h"
#include "choices.h"
+#include "config.h"
+
int flag_show_scores = 0;
size_t num_lines = 10;
@@ -45,8 +47,6 @@ void clear(tty_t *tty){
tty_flush(tty);
}
-#define TTY_COLOR_HIGHLIGHT TTY_COLOR_YELLOW
-
void draw_match(tty_t *tty, const char *choice, int selected){
int n = strlen(search);
size_t positions[n + 1];