summaryrefslogtreecommitdiff
path: root/examples/dte/show.h
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/dte/show.h
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/dte/show.h')
-rw-r--r--examples/dte/show.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/dte/show.h b/examples/dte/show.h
deleted file mode 100644
index 8736c50..0000000
--- a/examples/dte/show.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef SHOW_H
-#define SHOW_H
-
-#include <stdbool.h>
-#include "editor.h"
-#include "util/macros.h"
-#include "util/ptr-array.h"
-#include "util/string.h"
-
-bool show(EditorState *e, const char *type, const char *key, bool cflag) NONNULL_ARG(1, 2) WARN_UNUSED_RESULT;
-void collect_show_subcommands(PointerArray *a, const char *prefix) NONNULL_ARGS;
-void collect_show_subcommand_args(EditorState *e, PointerArray *a, const char *name, const char *arg_prefix) NONNULL_ARGS;
-
-String dump_all_bindings(EditorState *e);
-String dump_command_history(EditorState *e);
-String dump_compilers(EditorState *e);
-String dump_cursors(EditorState *e);
-String dump_frames(EditorState *e);
-String dump_normal_aliases(EditorState *e);
-String dump_options_and_fileopts(EditorState *e);
-String dump_search_history(EditorState *e);
-String do_dump_builtin_configs(EditorState *e);
-String do_dump_filetypes(EditorState *e);
-String do_dump_hl_colors(EditorState *e);
-String do_dump_options(EditorState *e);
-
-#endif