diff options
author | Marvin Borner | 2021-04-22 21:26:39 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-22 21:26:39 +0200 |
commit | 3f745223b871390a92791f3c04fd703a5a66de38 (patch) | |
tree | fc591f25ad14a0855b61ecf2c3e321cf4f28429b /src/syntax.c | |
parent | 825034a089901a58dd62b5a39f4c24761b6d5b4c (diff) |
Added unhighlighter
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c index 400f6e1..4367394 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -52,6 +52,7 @@ void syntax_highlight(char *buf, u32 size) u32 diff = 0; char *start = buf; + gui_unhighlight(); for (u32 i = 0; i < size; i++) { // TODO: Fix highlighting of last line without \n if (buf[i] == '\0') |