diff options
author | pommicket <pommicket@gmail.com> | 2024-12-07 20:38:11 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2024-12-07 20:38:11 -0500 |
commit | bbe75ba8c590747e7df7664128afdf96aeb539e2 (patch) | |
tree | 40342f0fda4dbfcc02030a25dfe78d973170ab9a /ide-format.c | |
parent | b74905fcb282603f8afc45cd3f08fa8c28c83d41 (diff) |
Better handling of LSP errors
Diffstat (limited to 'ide-format.c')
-rw-r--r-- | ide-format.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ide-format.c b/ide-format.c index 8cc0059..6cb6e8a 100644 --- a/ide-format.c +++ b/ide-format.c @@ -53,6 +53,11 @@ void format_process_lsp_response(Ted *ted, const LSPResponse *response) { || request->type == LSP_REQUEST_FORMATTING)) { return; } + formatting->last_request_id.id = 0; + if (lsp_response_is_error(response)) { + ted_flash_error_cursor(ted); + return; + } TextBuffer *buffer = ted->active_buffer; if (!buffer) return; if (buffer_lsp_document_id(buffer) != request->data.formatting.document) |