summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-28 13:29:01 -0500
committerpommicket <pommicket@gmail.com>2022-12-28 13:29:01 -0500
commitf57b21c5a6ac9913e3b9727abfed951708917250 (patch)
treeb3bfd84139c9d79abd51bcb74adaf0d50966e15e /ted.h
parentd6b2cc80723ce6e8454449bcdcdcb495f7a08ad9 (diff)
moving things around a bit
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index 21d3bf5..8952e76 100644
--- a/ted.h
+++ b/ted.h
@@ -557,6 +557,7 @@ typedef struct Ted {
void autocomplete_close(Ted *ted);
void signature_help_retrigger(Ted *ted);
char *buffer_contents_utf8_alloc(TextBuffer *buffer);
+Command command_from_str(char const *str);
void command_execute(Ted *ted, Command c, i64 argument);
void ted_switch_to_buffer(Ted *ted, TextBuffer *buffer);
// the settings of the active buffer, or the default settings if there is no active buffer
@@ -585,3 +586,6 @@ void config_read(Ted *ted, ConfigPart **parts, const char *filename);
void config_parse(Ted *ted, ConfigPart **parts);
void config_free(Ted *ted);
char *settings_get_root_dir(Settings *settings, const char *path);
+void menu_open(Ted *ted, Menu menu);
+void menu_close(Ted *ted);
+void find_update(Ted *ted, bool force);