From 0b363bde2f56d763a6dc9a109203e68bfeaf6043 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 7 Dec 2013 06:27:03 -0800 Subject: [PATCH] docs: warn about flag/value spacing bug --- MANUAL.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MANUAL.md b/MANUAL.md index 474fee222..382f82da1 100644 --- a/MANUAL.md +++ b/MANUAL.md @@ -55,6 +55,10 @@ somewhere after COMMAND, not before it. These input and help-related options can appear anywhere: `-f`, `--rules-file`, `--alias`, `--help`, `--debug`, `--version`. +Note: at present there is an issue with hledger's command-line option handling: +there can not be a space between a flag and its value. So eg you must +use `-w100` or `--width=100`, not `-w 100` or `--width 100`. + Arguments are also command-specific, but usually they form a [query](#queries) which selects a subset of the journal, eg transactions in a certain account.