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 /ted.h | |
parent | 13143e9d1a78c8e0135336bbfcc922ef28c0196a (diff) |
Use a cursor for code actions
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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. |