summaryrefslogtreecommitdiffstats
path: root/fish/fish.h
diff options
context:
space:
mode:
Diffstat (limited to 'fish/fish.h')
-rw-r--r--fish/fish.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/fish/fish.h b/fish/fish.h
index 91424e1e..13a2e5c4 100644
--- a/fish/fish.h
+++ b/fish/fish.h
@@ -61,4 +61,14 @@ extern int do_echo (const char *cmd, int argc, char *argv[]);
/* in edit.c */
extern int do_edit (const char *cmd, int argc, char *argv[]);
+/* This should just list all the built-in commands so they can
+ * be added to the generated auto-completion code.
+ */
+#define BUILTIN_COMMANDS_FOR_COMPLETION \
+ "help", \
+ "quit", "exit", "q", \
+ "alloc", "allocate", \
+ "echo", \
+ "edit", "vi", "emacs"
+
#endif /* FISH_H */