From 98cc1d0e773e2ee060b3558e91988fbd14fd9de4 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 30 Apr 2014 07:32:10 -0700 Subject: [PATCH] addons: more description strings for test addons --- hledger/Hledger/Cli/Options.hs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hledger/Hledger/Cli/Options.hs b/hledger/Hledger/Cli/Options.hs index 7201d2691..9e89cb541 100644 --- a/hledger/Hledger/Cli/Options.hs +++ b/hledger/Hledger/Cli/Options.hs @@ -109,7 +109,7 @@ reportflags = [ ,flagNone ["cost","B"] (\opts -> setboolopt "cost" opts) "report cost of commodities" ,flagReq ["depth"] (\s opts -> Right $ setopt "depth" s opts) "N" "hide accounts/transactions deeper than this" ,flagReq ["display","d"] (\s opts -> Right $ setopt "display" s opts) "DISPLAYEXP" "show only transactions matching the expression, which is 'dOP[DATE]' where OP is <, <=, =, >=, >" - ,flagNone ["date2","aux-date","effective"] (\opts -> setboolopt "date2" opts) "use transactions' secondary dates, if any" + ,flagNone ["date2","aux-date"] (\opts -> setboolopt "date2" opts) "use transactions' secondary dates, if any" ,flagNone ["empty","E"] (\opts -> setboolopt "empty" opts) "show empty/zero things which are normally elided" ,flagNone ["real","R"] (\opts -> setboolopt "real" opts) "report only on real (non-virtual) transactions" ] @@ -188,6 +188,12 @@ standardAddonsHelp = [ ,("addon", "dummy add-on command for testing") ,("addon2", "dummy add-on command for testing") ,("addon3", "dummy add-on command for testing") + ,("addon4", "dummy add-on command for testing") + ,("addon5", "dummy add-on command for testing") + ,("addon6", "dummy add-on command for testing") + ,("addon7", "dummy add-on command for testing") + ,("addon8", "dummy add-on command for testing") + ,("addon9", "dummy add-on command for testing") ] -- | Get a mode's help message as a nicely wrapped string.