summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-30 12:41:46 -0400
committerpommicket <pommicket@gmail.com>2025-09-30 12:41:46 -0400
commitf7993d24a0dfd4762f84378722bd39b07c0fe405 (patch)
tree0bedeb9afcd54c8c5b09f5cd64c46148626b3845 /ted.h
parent13143e9d1a78c8e0135336bbfcc922ef28c0196a (diff)
Use a cursor for code actions
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/ted.h b/ted.h
index 5432411..b465ab7 100644
--- a/ted.h
+++ b/ted.h
@@ -935,8 +935,12 @@ void code_action_open(Ted *ted);
void code_action_close(Ted *ted);
/// Are code actions being shown?
bool code_action_is_open(Ted *ted);
-/// Select best code action
-void code_action_select_best(Ted *ted);
+/// Select current code action
+void code_action_select(Ted *ted);
+/// Move code action cursor forwards
+void code_action_next(Ted *ted);
+/// Move code action cursor backwards
+void code_action_prev(Ted *ted);
// === ide-definitions.c ===
/// cancel the last go-to-definition / find symbols request.