diff options
author | pommicket <pommicket@gmail.com> | 2025-09-30 12:41:46 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-30 12:41:46 -0400 |
commit | f7993d24a0dfd4762f84378722bd39b07c0fe405 (patch) | |
tree | 0bedeb9afcd54c8c5b09f5cd64c46148626b3845 /lsp-parse.c | |
parent | 13143e9d1a78c8e0135336bbfcc922ef28c0196a (diff) |
Use a cursor for code actions
Diffstat (limited to 'lsp-parse.c')
-rw-r--r-- | lsp-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp-parse.c b/lsp-parse.c index bb4a10d..3c956e9 100644 --- a/lsp-parse.c +++ b/lsp-parse.c @@ -1109,7 +1109,7 @@ static bool parse_command(LSP *lsp, LSPResponse *response, const JSON *json, JSO command_out->kind = LSP_COMMAND_WORKSPACE_EDIT; return true; } - lsp_set_error(lsp, "Unrecognized command: %s\n", command); + fprintf(stderr, "Unrecognized command: %s\n", command); (void)command_out; return false; } |