docs: show disabled commands in --help too for clarity
This commit is contained in:
parent
4092879365
commit
60d05f83b3
@ -35,14 +35,23 @@ help1 =
|
|||||||
" print - show transactions in ledger format\n" ++
|
" print - show transactions in ledger format\n" ++
|
||||||
" register - show transactions as a register with running balance\n" ++
|
" register - show transactions as a register with running balance\n" ++
|
||||||
" stats - show various statistics for a ledger\n" ++
|
" stats - show various statistics for a ledger\n" ++
|
||||||
|
" vty - run a simple curses-style UI" ++
|
||||||
#ifdef VTY
|
#ifdef VTY
|
||||||
" vty - run a simple curses-style UI\n" ++
|
"\n" ++
|
||||||
|
#else
|
||||||
|
" (DISABLED, install with -fvty)\n" ++
|
||||||
#endif
|
#endif
|
||||||
|
" web - run a simple web-based UI" ++
|
||||||
#if defined(WEB) || defined(WEB610)
|
#if defined(WEB) || defined(WEB610)
|
||||||
" web - run a simple web-based UI\n" ++
|
"\n" ++
|
||||||
|
#else
|
||||||
|
" (DISABLED, install with -fweb or -fweb610)\n" ++
|
||||||
#endif
|
#endif
|
||||||
|
" chart - generate balances pie charts" ++
|
||||||
#ifdef CHART
|
#ifdef CHART
|
||||||
" chart - generate balances pie chart\n" ++
|
"\n" ++
|
||||||
|
#else
|
||||||
|
" (DISABLED, install with -fchart)\n" ++
|
||||||
#endif
|
#endif
|
||||||
" test - run self-tests\n" ++
|
" test - run self-tests\n" ++
|
||||||
"\n" ++
|
"\n" ++
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user