From 3a1af93e9c0f983da64070d3774596844c2a26e1 Mon Sep 17 00:00:00 2001 From: pommicket Date: Tue, 30 Sep 2025 10:42:13 -0400 Subject: Initial implementation of code actions --- ted.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ted.h') diff --git a/ted.h b/ted.h index 68814d9..8906dda 100644 --- a/ted.h +++ b/ted.h @@ -928,6 +928,14 @@ void autocomplete_prev(Ted *ted); /// close completion menu void autocomplete_close(Ted *ted); +// === ide-code-action.c == +/// Show suggested code actions +void code_action_open(Ted *ted); +/// Hide suggested code actions +void code_action_close(Ted *ted); +/// Are code actions being shown? +bool code_action_is_open(Ted *ted); + // === ide-definitions.c === /// cancel the last go-to-definition / find symbols request. void definition_cancel_lookup(Ted *ted); -- cgit v1.2.3