summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-30 10:42:13 -0400
committerpommicket <pommicket@gmail.com>2025-09-30 10:42:13 -0400
commit3a1af93e9c0f983da64070d3774596844c2a26e1 (patch)
tree65878feb922fcec4ae9f3cae4bbc1a5ee99d6cb9 /ted.h
parent84da626a18ccc779aef4a178ee0097a93c959520 (diff)
Initial implementation of code actions
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h8
1 files changed, 8 insertions, 0 deletions
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);