aboutsummaryrefslogtreecommitdiff
path: root/examples/dte/completion.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dte/completion.h')
-rw-r--r--examples/dte/completion.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/dte/completion.h b/examples/dte/completion.h
deleted file mode 100644
index 873e994..0000000
--- a/examples/dte/completion.h
+++ /dev/null
@@ -1,21 +0,0 @@
1#ifndef COMPLETION_H
2#define COMPLETION_H
3
4#include "cmdline.h"
5#include "editor.h"
6#include "util/hashmap.h"
7#include "util/macros.h"
8#include "util/ptr-array.h"
9
10void complete_command_next(EditorState *e) NONNULL_ARGS;
11void complete_command_prev(EditorState *e) NONNULL_ARGS;
12void reset_completion(CommandLine *cmdline) NONNULL_ARGS;
13
14void collect_env(EditorState *e, PointerArray *a, const char *prefix) NONNULL_ARGS;
15void collect_normal_aliases(EditorState *e, PointerArray *a, const char *prefix) NONNULL_ARGS;
16void collect_bound_normal_keys(EditorState *e, PointerArray *a, const char *keystr_prefix) NONNULL_ARGS;
17void collect_hl_colors(EditorState *e, PointerArray *a, const char *prefix) NONNULL_ARGS;
18void collect_compilers(EditorState *e, PointerArray *a, const char *prefix) NONNULL_ARGS;
19void collect_hashmap_keys(const HashMap *map, PointerArray *a, const char *prefix) NONNULL_ARGS;
20
21#endif