summaryrefslogtreecommitdiff
path: root/ide-highlights.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-31 11:54:06 -0500
committerpommicket <pommicket@gmail.com>2022-12-31 11:54:06 -0500
commit02faedf9bf7e826bc78161f8cf07ffca5d2dbe57 (patch)
tree39a0f0f221fbdec2197f1c8c6d0cf4986df6b8d4 /ide-highlights.c
parentf40e9f02ef3ca0a86282a927c9bb7887900100b2 (diff)
highlight-enabled and highlight-auto settings
Diffstat (limited to 'ide-highlights.c')
-rw-r--r--ide-highlights.c27
1 files changed, 19 insertions, 8 deletions
diff --git a/ide-highlights.c b/ide-highlights.c
index 8ecf3ea..f53fb19 100644
--- a/ide-highlights.c
+++ b/ide-highlights.c
@@ -1,30 +1,33 @@
-static void highlights_clear(Highlights *hls) {
+void highlights_close(Ted *ted) {
+ Highlights *hls = &ted->highlights;
arr_clear(hls->highlights);
+ ted_cancel_lsp_request(ted, hls->last_request_lsp, hls->last_request_id);
+ hls->last_request_id = 0;
+ hls->requested_position = (LSPDocumentPosition){0};
}
void highlights_send_request(Ted *ted) {
TextBuffer *buffer = ted->active_buffer;
Highlights *hls = &ted->highlights;
if (!buffer) {
- highlights_clear(hls);
+ highlights_close(ted);
return;
}
LSP *lsp = buffer_lsp(buffer);
if (!lsp) {
- highlights_clear(hls);
+ highlights_close(ted);
return;
}
LSPDocumentPosition pos = buffer_cursor_pos_as_lsp_document_position(buffer);
LSPRequest request = {.type = LSP_REQUEST_HIGHLIGHT};
request.data.highlight.position = pos;
+
+ ted_cancel_lsp_request(ted, hls->last_request_lsp, hls->last_request_id);
hls->last_request_id = lsp_send_request(lsp, &request);
hls->last_request_lsp = lsp->id;
hls->requested_position = pos;
}
-void highlights_close(Ted *ted) {
- highlights_clear(&ted->highlights);
-}
void highlights_process_lsp_response(Ted *ted, LSPResponse *response) {
Highlights *hls = &ted->highlights;
@@ -43,13 +46,21 @@ void highlights_frame(Ted *ted) {
Highlights *hls = &ted->highlights;
TextBuffer *buffer = ted->active_buffer;
if (!buffer) {
- highlights_clear(hls);
+ highlights_close(ted);
+ return;
+ }
+ const Settings *settings = buffer_settings(buffer);
+ bool ctrl_down = SDL_GetKeyboardState(NULL)[SDL_SCANCODE_LCTRL]
+ || SDL_GetKeyboardState(NULL)[SDL_SCANCODE_RCTRL];
+ if (!settings->highlight_enabled
+ || (!settings->highlight_auto && !ctrl_down)) {
+ highlights_close(ted);
return;
}
+
LSPDocumentPosition pos = buffer_cursor_pos_as_lsp_document_position(buffer);
if (!lsp_document_position_eq(pos, hls->requested_position)) {
// cursor moved or something. let's resend the request.
- highlights_clear(hls);
highlights_send_request(ted);
}