summaryrefslogtreecommitdiffstats
path: root/fish/fish.h
diff options
context:
space:
mode:
Diffstat (limited to 'fish/fish.h')
-rw-r--r--fish/fish.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/fish/fish.h b/fish/fish.h
index ac846470..cad80733 100644
--- a/fish/fish.h
+++ b/fish/fish.h
@@ -77,17 +77,21 @@ extern int do_glob (const char *cmd, int argc, char *argv[]);
/* in more.c */
extern int do_more (const char *cmd, int argc, char *argv[]);
+/* in time.c */
+extern int do_time (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", \
- "lcd", \
- "glob", \
- "more", "less"
+ "help", \
+ "quit", "exit", "q", \
+ "alloc", "allocate", \
+ "echo", \
+ "edit", "vi", "emacs", \
+ "lcd", \
+ "glob", \
+ "more", "less", \
+ "time"
#endif /* FISH_H */