X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Ffish.h;h=0dd1fc2e58e4ca084a53e2b01e5ac14ee8e5fa40;hb=875dc84cc01dacb1e254e294a66e179b96fbdbc6;hp=c9dd3508c55d1b03efa14f09a34befe451f0a2f0;hpb=c10fa84ada465d83bcbe0550ed512215036b4bea;p=libguestfs.git diff --git a/fish/fish.h b/fish/fish.h index c9dd350..0dd1fc2 100644 --- a/fish/fish.h +++ b/fish/fish.h @@ -21,6 +21,15 @@ #include +#ifdef HAVE_GETTEXT +#include "gettext.h" +#define _(str) dgettext(PACKAGE, (str)) +#define N_(str) dgettext(PACKAGE, (str)) +#else +#define _(str) str +#define N_(str) str +#endif + /* in fish.c */ extern guestfs_h *g; extern int quit; @@ -52,4 +61,18 @@ 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[]); +/* in lcd.c */ +extern int do_lcd (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" + #endif /* FISH_H */