diff options
author | pommicket <pommicket@gmail.com> | 2023-03-03 18:01:34 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-03-03 18:01:34 -0500 |
commit | fb342182983ffdb0aae0497f5cbcb71b0b291023 (patch) | |
tree | 31fdc46c095fb7fe2d8f8f0d21f1d3a310fc1afc /ide-hover.c | |
parent | fb342637d3b2553daf4659967f35e8e26bd26eb1 (diff) |
different read/write colors for ide-highlights
Diffstat (limited to 'ide-hover.c')
-rw-r--r-- | ide-hover.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ide-hover.c b/ide-hover.c index aed7ed1..b88a960 100644 --- a/ide-hover.c +++ b/ide-hover.c @@ -133,7 +133,7 @@ void hover_frame(Ted *ted, double dt) { float char_height = text_font_char_height(font); float x = ted->mouse_pos.x, y = ted->mouse_pos.y + char_height; - buffer_highlight_lsp_range(buffer, hover->range); + buffer_highlight_lsp_range(buffer, hover->range, COLOR_HOVER_HL); if (hover->text) { float max_width = 400; |