diff --git a/hledger/Hledger/Cli/Commands/Add.txt b/hledger/Hledger/Cli/Commands/Add.txt index 5227faa5d..bf6f1eb70 100644 --- a/hledger/Hledger/Cli/Commands/Add.txt +++ b/hledger/Hledger/Cli/Commands/Add.txt @@ -60,3 +60,7 @@ Save this transaction to the journal ? [y]: Saved. Starting the next transaction (. or ctrl-D/ctrl-C to quit) Date [2015/05/22]: $ + +On Microsoft Windows, the add command makes sure that no part of the +file path ends with a period, as it can cause data loss on that platform +(cf #1056). diff --git a/hledger/Hledger/Cli/Commands/Balance.txt b/hledger/Hledger/Cli/Commands/Balance.txt index 76917d4af..5c4825183 100644 --- a/hledger/Hledger/Cli/Commands/Balance.txt +++ b/hledger/Hledger/Cli/Commands/Balance.txt @@ -220,6 +220,9 @@ information: ----------------------++------------------------------------- || 0 0 0 +Note that --cumulative or --historical/-H disable --row-total/-T, since +summing end balances generally does not make sense. + Multicolumn balance reports display accounts in flat mode by default; to see the hierarchy, use --tree. diff --git a/hledger/Hledger/Cli/Commands/Balancesheet.txt b/hledger/Hledger/Cli/Commands/Balancesheet.txt index c5bd87bdf..dc4975ba3 100644 --- a/hledger/Hledger/Cli/Commands/Balancesheet.txt +++ b/hledger/Hledger/Cli/Commands/Balancesheet.txt @@ -35,7 +35,9 @@ With a reporting interval, multiple columns will be shown, one for each report period. As with multicolumn balance reports, you can alter the report mode with --change/--cumulative/--historical. Normally balancesheet shows historical ending balances, which is what you need -for a balance sheet; note this means it ignores report begin dates. +for a balance sheet; note this means it ignores report begin dates (and +-T/--row-total, since summing end balances generally does not make +sense). This command also supports output destination and output format selection. diff --git a/hledger/Hledger/Cli/Commands/Close.txt b/hledger/Hledger/Cli/Commands/Close.txt index bd7d77faa..f2cdafae3 100644 --- a/hledger/Hledger/Cli/Commands/Close.txt +++ b/hledger/Hledger/Cli/Commands/Close.txt @@ -41,6 +41,10 @@ balance assertions will depend on these flags. Likewise, if you run this command with --auto, the balance assertions will probably always require --auto. +When account balances have cost information (transaction prices), the +closing/opening transactions will preserve it, so that eg balance -B +reports will not be affected. + Examples: Carrying asset/liability balances into a new file for 2019, all from diff --git a/hledger/Hledger/Cli/Commands/Descriptions.txt b/hledger/Hledger/Cli/Commands/Descriptions.txt index 6654538a8..d33f9e769 100644 --- a/hledger/Hledger/Cli/Commands/Descriptions.txt +++ b/hledger/Hledger/Cli/Commands/Descriptions.txt @@ -1,5 +1,4 @@ -descriptions -Show descriptions. +descriptions Show descriptions. _FLAGS_ diff --git a/hledger/Hledger/Cli/Commands/Import.txt b/hledger/Hledger/Cli/Commands/Import.txt index d958fb8d7..eb2c39b37 100644 --- a/hledger/Hledger/Cli/Commands/Import.txt +++ b/hledger/Hledger/Cli/Commands/Import.txt @@ -18,7 +18,7 @@ see only uncategorised transactions: $ hledger import --dry ... | hledger -f- print unknown --ignore-assertions -Importing balance assignments: +Importing balance assignments Entries added by import will have their posting amounts made explicit (like hledger print -x). This means that any balance assignments in diff --git a/hledger/Hledger/Cli/Commands/Notes.txt b/hledger/Hledger/Cli/Commands/Notes.txt index 44fa12f8e..36433434d 100644 --- a/hledger/Hledger/Cli/Commands/Notes.txt +++ b/hledger/Hledger/Cli/Commands/Notes.txt @@ -1,5 +1,4 @@ -notes -Show notes. +notes Show notes. _FLAGS_ diff --git a/hledger/Hledger/Cli/Commands/Payees.txt b/hledger/Hledger/Cli/Commands/Payees.txt index 59ddeb1f5..0a1983ae5 100644 --- a/hledger/Hledger/Cli/Commands/Payees.txt +++ b/hledger/Hledger/Cli/Commands/Payees.txt @@ -1,5 +1,4 @@ -payees -Show payee names. +payees Show payee names. _FLAGS_ diff --git a/hledger/Hledger/Cli/Commands/Rewrite.txt b/hledger/Hledger/Cli/Commands/Rewrite.txt index ff9ea6f16..14eab292d 100644 --- a/hledger/Hledger/Cli/Commands/Rewrite.txt +++ b/hledger/Hledger/Cli/Commands/Rewrite.txt @@ -13,9 +13,9 @@ transaction's first posting amount. Examples: -hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100' -hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"' -hledger-rewrite.hs -f rewrites.hledger +$ hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100' +$ hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"' +$ hledger-rewrite.hs -f rewrites.hledger rewrites.hledger may consist of entries like: diff --git a/hledger/Hledger/Cli/Commands/Tags.txt b/hledger/Hledger/Cli/Commands/Tags.txt index bb41403a9..78609247a 100644 --- a/hledger/Hledger/Cli/Commands/Tags.txt +++ b/hledger/Hledger/Cli/Commands/Tags.txt @@ -2,6 +2,7 @@ tags List all the tag names used in the journal. With a TAGREGEX argument, only tag names matching the regular expression (case insensitive) are shown. With QUERY arguments, only transactions matching the query are -considered. +considered. With --values flag, the tags' unique values are listed +instead. _FLAGS_