aboutsummaryrefslogtreecommitdiff
path: root/include/ecex.h
diff options
context:
space:
mode:
authorDavid Moc <personal@cdatgoose.org>2026-06-03 04:14:59 +0200
committerDavid Moc <personal@cdatgoose.org>2026-06-03 04:14:59 +0200
commitaba45a64364457f20e84de4189500f4426e11d53 (patch)
treefe42d47f01decd53e28bb187cd3d85de78035a46 /include/ecex.h
parentc1ccd38b31d722c843ab311338e2b8d1905eb8f8 (diff)
Added ffap and fixed an eval memory leakmain
Diffstat (limited to 'include/ecex.h')
-rw-r--r--include/ecex.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ecex.h b/include/ecex.h
index a7d4b24..ec08bd0 100644
--- a/include/ecex.h
+++ b/include/ecex.h
@@ -302,6 +302,8 @@ void ecex_draw_stat_i(ecex_draw_context_t *ctx, int x, int y, int label_id, int
void ecex_draw_tetris_preview_i(ecex_draw_context_t *ctx, int piece, int x, int y, int cell, int alpha);
int ecex_find_file(ecex_t *ed, const char *path);
+int ecex_find_file_at(ecex_t *ed, const char *path, size_t line, size_t column);
+int ecex_find_project_file(ecex_t *ed, const char *from_file, const char *path);
int ecex_save_current_buffer(ecex_t *ed);
int ecex_write_current_buffer(ecex_t *ed, const char *path);
int ecex_compile(ecex_t *ed, const char *command);
@@ -311,6 +313,9 @@ int ecex_rerun_grep(ecex_t *ed);
int ecex_next_interactive_action(ecex_t *ed);
int ecex_previous_interactive_action(ecex_t *ed);
int ecex_indent_line_to(buffer_t *buffer, int target_cols);
+int ecex_clangd_jump_to_definition(ecex_t *ed);
+int ecex_c_mode_set_tab_width(int spaces);
+int ecex_c_mode_tab_width(void);
int ecex_comment_region(ecex_t *ed);
int ecex_uncomment_region(ecex_t *ed);
void ecex_request_prompt(ecex_t *ed, ecex_prompt_request_t request, const char *message);