diff options
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -22,7 +22,7 @@ extern "C" { #include "command.h" /// Version number -#define TED_VERSION "2.8.4" +#define TED_VERSION "2.9.0" /// Maximum path size ted handles. #define TED_PATH_MAX 1024 /// Config filename @@ -928,6 +928,20 @@ 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); +/// 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. void definition_cancel_lookup(Ted *ted); |