From b9273a45859d3377e131f2328f87efd7f4f948f9 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 16 Mar 2023 22:08:49 -1000 Subject: [PATCH] imp: cli: move OTHER last in commands list --- hledger/Hledger/Cli/Commands.hs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hledger/Hledger/Cli/Commands.hs b/hledger/Hledger/Cli/Commands.hs index 180766294..e7e8cf66e 100644 --- a/hledger/Hledger/Cli/Commands.hs +++ b/hledger/Hledger/Cli/Commands.hs @@ -263,11 +263,6 @@ commandsList progversion othercmds highlight0 = ,"+ui run terminal UI" ,"+web run web UI" ,"" - ,bold' "OTHER: other hledger-* addon commands found in PATH" - ] ++ - multicol 80 (map (highlightAddon . (' ':) . drop 1) othercmds) - ++ - ["" -----------------------------------------80------------------------------------- ,bold' "HELP: command-line help and more docs" ," hledger show this commands list" @@ -277,7 +272,12 @@ commandsList progversion othercmds highlight0 = ," hledger demo [NUM|NAME|STR] [ASOPTS] show small demos of hledger" ," https://hledger.org html manuals, tutorials, support.." ,"" + -----------------------------------------80------------------------------------- + ,bold' "OTHER: other hledger-* addon commands found in PATH" ] + ++ multicol 80 (map (highlightAddon . (' ':) . drop 1) othercmds) + ++ [""] + -- edit open a text editor on some part of the journal -- | Convert a single-column list of items to a multicolumn list