;imp: cli: commands list tweaks
This commit is contained in:
parent
b140529465
commit
093fdda7db
@ -175,16 +175,16 @@ commandsList progversion othercmds =
|
|||||||
,progversion
|
,progversion
|
||||||
,""
|
,""
|
||||||
,"Usage: hledger COMMAND [OPTIONS] [-- ADDONCMDOPTIONS]"
|
,"Usage: hledger COMMAND [OPTIONS] [-- ADDONCMDOPTIONS]"
|
||||||
,"Commands (+ addon commands found in PATH):"
|
,"Commands:"
|
||||||
,""
|
,""
|
||||||
,"DATA ENTRY - add or edit entries in the journal file:"
|
,"DATA ENTRY: add or edit entries in the journal file"
|
||||||
," add add transactions using terminal prompts"
|
," add add transactions using terminal prompts"
|
||||||
,"+edit edit a subset of transactions"
|
,"+edit edit a subset of transactions"
|
||||||
,"+iadd add transactions using a TUI"
|
,"+iadd add transactions using a TUI"
|
||||||
," import add new transactions from from other files, eg csv"
|
," import add new transactions from from other files, eg csv"
|
||||||
,""
|
,""
|
||||||
-----------------------------------------80-------------------------------------
|
-----------------------------------------80-------------------------------------
|
||||||
,"DATA CREATION - create or convert entries to be added to the journal file:"
|
,"DATA CREATION: create or convert entries to be added to the journal file"
|
||||||
,"+autosync download/deduplicate/convert OFX data"
|
,"+autosync download/deduplicate/convert OFX data"
|
||||||
," close generate balance-zeroing/restoring transactions"
|
," close generate balance-zeroing/restoring transactions"
|
||||||
,"+interest generate interest transactions"
|
,"+interest generate interest transactions"
|
||||||
@ -192,16 +192,16 @@ commandsList progversion othercmds =
|
|||||||
,"+stockquotes download market prices from AlphaVantage"
|
,"+stockquotes download market prices from AlphaVantage"
|
||||||
,""
|
,""
|
||||||
-----------------------------------------80-------------------------------------
|
-----------------------------------------80-------------------------------------
|
||||||
,"DATA MANAGEMENT - help validate or manage journal files:"
|
,"DATA MANAGEMENT: help validate or manage journal files"
|
||||||
," check check for various kinds of issue in the data"
|
," check check for various kinds of issue in the data"
|
||||||
,"+check-fancyassertions check more powerful balance assertions"
|
,"+check-fancyassertions check more powerful balance assertions"
|
||||||
,"+check-tagfiles check file paths in tag values exist"
|
,"+check-tagfiles check file paths in tag values exist"
|
||||||
," diff compare account transactions in two journal files"
|
," diff compare account transactions in two journal files"
|
||||||
,"+git record/status/log journal changes with git"
|
,"+git record/status/log journal changes easily with git"
|
||||||
,"+pijul record/status/log journal changes with pijul"
|
,"+pijul record/status/log journal changes easily with pijul"
|
||||||
,""
|
,""
|
||||||
-----------------------------------------80-------------------------------------
|
-----------------------------------------80-------------------------------------
|
||||||
,"REPORTS, FINANCIAL - standard financial reports:"
|
,"REPORTS, FINANCIAL: standard financial reports"
|
||||||
," aregister (areg) show transactions in a particular account"
|
," aregister (areg) show transactions in a particular account"
|
||||||
," balancesheet (bs) show assets, liabilities and net worth"
|
," balancesheet (bs) show assets, liabilities and net worth"
|
||||||
," balancesheetequity (bse) show assets, liabilities and equity"
|
," balancesheetequity (bse) show assets, liabilities and equity"
|
||||||
@ -209,7 +209,7 @@ commandsList progversion othercmds =
|
|||||||
," incomestatement (is) show revenues and expenses"
|
," incomestatement (is) show revenues and expenses"
|
||||||
,""
|
,""
|
||||||
-----------------------------------------80-------------------------------------
|
-----------------------------------------80-------------------------------------
|
||||||
,"REPORTS, VERSATILE - more complex/versatile reporting commands:"
|
,"REPORTS, VERSATILE: more complex/versatile reporting commands"
|
||||||
," balance (bal) show balance changes, end balances, budgets, gains.."
|
," balance (bal) show balance changes, end balances, budgets, gains.."
|
||||||
,"+plot create charts from balance reports, in terminal or GUI"
|
,"+plot create charts from balance reports, in terminal or GUI"
|
||||||
," print show transactions or export journal data"
|
," print show transactions or export journal data"
|
||||||
@ -217,7 +217,7 @@ commandsList progversion othercmds =
|
|||||||
," roi show return on investments"
|
," roi show return on investments"
|
||||||
,""
|
,""
|
||||||
-----------------------------------------80-------------------------------------
|
-----------------------------------------80-------------------------------------
|
||||||
,"REPORTS, BASIC - simple reports:"
|
,"REPORTS, BASIC: simple reports"
|
||||||
," accounts show account names"
|
," accounts show account names"
|
||||||
," activity show bar charts of posting counts per period"
|
," activity show bar charts of posting counts per period"
|
||||||
," codes show transaction codes"
|
," codes show transaction codes"
|
||||||
@ -232,21 +232,21 @@ commandsList progversion othercmds =
|
|||||||
," test run self tests"
|
," test run self tests"
|
||||||
,""
|
,""
|
||||||
-----------------------------------------80-------------------------------------
|
-----------------------------------------80-------------------------------------
|
||||||
,"UIS - other user interfaces:"
|
,"UIS: other user interfaces"
|
||||||
,"+ui run terminal UI"
|
,"+ui run terminal UI"
|
||||||
,"+web run web UI"
|
,"+web run web UI"
|
||||||
,""
|
,""
|
||||||
,"OTHER - other hledger-* addon commands found in PATH:"
|
,"OTHER: other hledger-* addon commands found in PATH"
|
||||||
] ++
|
] ++
|
||||||
multicol 80 (map ((' ':) . drop 1) othercmds)
|
multicol 80 (map ((' ':) . drop 1) othercmds)
|
||||||
++
|
++
|
||||||
[""
|
[""
|
||||||
-----------------------------------------80-------------------------------------
|
-----------------------------------------80-------------------------------------
|
||||||
,"HELP - viewing command-line help and more docs:"
|
,"HELP: command-line help and more docs"
|
||||||
," hledger show this commands list"
|
," hledger show this commands list"
|
||||||
," hledger -h show hledger's general help"
|
," hledger -h show hledger's general help"
|
||||||
," hledger COMMAND -h show COMMAND's help"
|
," hledger COMMAND -h show COMMAND's help"
|
||||||
," hledger help [TOPIC] [-i|-m|-p] show the hledger manual with info/man/pager"
|
," hledger help [-i|-m|-p] [TOPIC] show the hledger manual with info/man/pager"
|
||||||
," https://hledger.org html manuals, tutorials, support.."
|
," https://hledger.org html manuals, tutorials, support.."
|
||||||
,""
|
,""
|
||||||
]
|
]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user