mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
Basilisk - the cmd line - help (the columns alignment, error improvements)
https://github.com/MoonchildProductions/moebius/pull/58
This commit is contained in:
parent
208282c5c5
commit
e1f7b9e459
5 changed files with 38 additions and 32 deletions
|
|
@ -1590,28 +1590,29 @@ DumpHelp()
|
|||
|
||||
#ifdef MOZ_X11
|
||||
printf("X11 options\n"
|
||||
" --display=DISPLAY X display to use\n"
|
||||
" --sync Make X calls synchronous\n");
|
||||
" --display=DISPLAY X display to use.\n"
|
||||
" --sync Make X calls synchronous.\n");
|
||||
#endif
|
||||
#ifdef XP_UNIX
|
||||
printf(" --g-fatal-warnings Make all warnings fatal\n"
|
||||
printf(" --g-fatal-warnings Make all warnings fatal.\n"
|
||||
"\n%s options\n", gAppData->name);
|
||||
#endif
|
||||
|
||||
printf(" -h or --help Print this message.\n"
|
||||
" -v or --version Print %s version.\n"
|
||||
" -P <profile> Start with <profile>.\n"
|
||||
" --profile <path> Start with profile at <path>.\n"
|
||||
" --migration Start with migration wizard.\n"
|
||||
" --ProfileManager Start with ProfileManager.\n"
|
||||
" --no-remote Do not accept or send remote commands; implies\n"
|
||||
" --new-instance.\n"
|
||||
" --new-instance Open new instance, not a new window in running instance.\n"
|
||||
" --UILocale <locale> Start with <locale> resources as UI Locale.\n"
|
||||
" --safe-mode Disables extensions and themes for this session.\n", gAppData->name);
|
||||
printf(" -h or --help Print this message.\n"
|
||||
" -v or --version Print %s version.\n"
|
||||
" -P <profile> Start with <profile>.\n"
|
||||
" --profile <path> Start with profile at <path>.\n"
|
||||
" --migration Start with migration wizard.\n"
|
||||
" --ProfileManager Start with ProfileManager.\n"
|
||||
" --no-remote Do not accept or send remote commands;\n"
|
||||
" implies --new-instance.\n"
|
||||
" --new-instance Open new instance, not a new window\n"
|
||||
" in running instance.\n"
|
||||
" --UILocale <locale> Start with <locale> resources as UI Locale.\n"
|
||||
" --safe-mode Disables extensions and themes for this session.\n", (const char*) gAppData->name);
|
||||
|
||||
#if defined(XP_WIN)
|
||||
printf(" --console Start %s with a debugging console.\n", gAppData->name);
|
||||
printf(" --console Start %s with a debugging console.\n", (const char*) gAppData->name);
|
||||
#endif
|
||||
|
||||
// this works, but only after the components have registered. so if you drop in a new command line handler, --help
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue