hledger/hledger-ui/hledger-ui.txt

465 lines
20 KiB
Plaintext
Raw Normal View History

2020-12-21 07:11:35 +03:00
HLEDGER-UI(1) hledger User Manuals HLEDGER-UI(1)
NAME
2020-12-25 04:26:17 +03:00
hledger-ui is a terminal interface (TUI) for the hledger accounting
tool. This manual is for hledger-ui 1.20.99.
SYNOPSIS
hledger-ui [OPTIONS] [QUERYARGS]
hledger ui -- [OPTIONS] [QUERYARGS]
DESCRIPTION
2020-12-25 04:26:17 +03:00
hledger is a reliable, cross-platform set of programs for tracking
money, time, or any other commodity, using double-entry accounting and
a simple, editable file format. hledger is inspired by and largely
2020-01-26 04:10:34 +03:00
compatible with ledger(1).
2020-12-25 04:26:17 +03:00
hledger-ui is hledger's terminal interface, providing an efficient
full-window text UI for viewing accounts and transactions, and some
limited data entry capability. It is easier than hledger's command-
line interface, and sometimes quicker and more convenient than the web
2019-05-24 08:26:43 +03:00
interface.
2020-12-25 04:26:17 +03:00
Like hledger, it reads data from one or more files in hledger journal,
timeclock, timedot, or CSV format specified with -f, or $LEDGER_FILE,
or $HOME/.hledger.journal (on windows, perhaps
C:/Users/USER/.hledger.journal). For more about this see hledger(1),
hledger_journal(5) etc.
2020-12-25 04:26:17 +03:00
Unlike hledger, hledger-ui hides all future-dated transactions by de-
fault. They can be revealed, along with any rule-generated periodic
transactions, by pressing the F key (or starting with --forecast) to
2020-02-22 22:33:50 +03:00
enable "forecast mode".
OPTIONS
2020-12-25 04:26:17 +03:00
Note: if invoking hledger-ui as a hledger subcommand, write -- before
options as shown above.
2020-12-25 04:26:17 +03:00
Any QUERYARGS are interpreted as a hledger search query which filters
the data.
--watch
2017-01-06 04:18:13 +03:00
watch for data and date changes and reload automatically
--theme=default|terminal|greenterm
use this custom display theme
--register=ACCTREGEX
start in the (first) matched account's register screen
--change
2020-12-25 04:26:17 +03:00
show period balances (changes) at startup instead of historical
2016-11-25 07:24:07 +03:00
balances
2020-07-18 22:37:06 +03:00
-l --flat
show accounts as a flat list (default)
2018-10-17 23:14:52 +03:00
2020-07-18 22:37:06 +03:00
-t --tree
2018-10-17 23:14:52 +03:00
show accounts as a tree
2017-03-30 00:35:59 +03:00
hledger input options:
-f FILE --file=FILE
2017-03-30 00:35:59 +03:00
use a different input file. For stdin, use - (default:
$LEDGER_FILE or $HOME/.hledger.journal)
--rules-file=RULESFILE
2020-12-25 04:26:17 +03:00
Conversion rules file to use when reading CSV (default:
FILE.rules)
2018-09-07 22:44:17 +03:00
--separator=CHAR
Field separator to expect when reading CSV (default: ',')
2018-09-07 22:44:17 +03:00
--alias=OLD=NEW
2017-03-30 00:35:59 +03:00
rename accounts named OLD to NEW
--anon anonymize accounts and payees
--pivot FIELDNAME
use some other field or tag for the account name
2016-07-07 01:17:09 +03:00
-I --ignore-assertions
disable balance assertion checks (note: does not disable balance
assignments)
2020-11-26 19:52:56 +03:00
-s --strict
2020-12-25 04:26:17 +03:00
do extra error checking (check that all posted accounts are de-
2020-11-26 19:52:56 +03:00
clared)
hledger reporting options:
-b --begin=DATE
include postings/txns on or after this date
-e --end=DATE
include postings/txns before this date
-D --daily
multiperiod/multicolumn report by day
-W --weekly
multiperiod/multicolumn report by week
-M --monthly
multiperiod/multicolumn report by month
-Q --quarterly
multiperiod/multicolumn report by quarter
-Y --yearly
multiperiod/multicolumn report by year
-p --period=PERIODEXP
2020-12-25 04:26:17 +03:00
set start date, end date, and/or reporting interval all at once
2019-09-01 07:02:00 +03:00
using period expressions syntax
--date2
match the secondary date instead (see command help for other ef-
fects)
2017-06-16 04:47:28 +03:00
-U --unmarked
include only unmarked postings/txns (can combine with -P or -C)
2017-06-10 23:58:14 +03:00
-P --pending
include only pending postings/txns
2017-06-16 04:47:28 +03:00
-C --cleared
include only cleared postings/txns
-R --real
include only non-virtual postings
2017-09-22 21:51:53 +03:00
-NUM --depth=NUM
hide/aggregate accounts or postings more than NUM levels deep
-E --empty
2020-12-25 04:26:17 +03:00
show items with zero amount, normally hidden (and vice-versa in
hledger-ui/hledger-web)
-B --cost
2020-06-20 00:36:58 +03:00
convert amounts to their cost/selling amount at transaction time
2020-06-20 00:36:58 +03:00
-V --market
2020-12-25 04:26:17 +03:00
convert amounts to their market value in default valuation com-
2020-06-20 00:36:58 +03:00
modities
-X --exchange=COMM
convert amounts to their market value in commodity COMM
--value
2020-12-25 04:26:17 +03:00
convert amounts to cost or market value, more flexibly than
2020-06-20 00:36:58 +03:00
-B/-V/-X
--infer-value
with -V/-X/--value, also infer market prices from transactions
2017-12-31 21:08:44 +03:00
--auto apply automated posting rules to modify transactions.
2017-12-15 05:20:07 +03:00
--forecast
2020-12-25 04:26:17 +03:00
generate future transactions from periodic transaction rules,
for the next 6 months or till report end date. In hledger-ui,
2020-02-22 22:33:50 +03:00
also make ordinary future transactions visible.
2017-12-15 05:20:07 +03:00
2020-07-18 22:37:06 +03:00
--color=WHEN (or --colour=WHEN)
2020-12-25 04:26:17 +03:00
Should color-supporting commands use ANSI color codes in text
output. 'auto' (default): whenever stdout seems to be a color-
supporting terminal. 'always' or 'yes': always, useful eg when
piping output into 'less -R'. 'never' or 'no': never. A
2020-07-18 22:37:06 +03:00
NO_COLOR environment variable overrides this.
2020-07-14 22:22:27 +03:00
2017-10-01 00:29:25 +03:00
When a reporting option appears more than once in the command line, the
last one takes precedence.
Some reporting options can also be written as query arguments.
2017-03-30 00:35:59 +03:00
hledger help options:
2017-07-07 04:01:11 +03:00
-h --help
2020-12-27 04:29:02 +03:00
show general or COMMAND help
--man show general or COMMAND user manual with man
--info show general or COMMAND user manual with info
2017-03-30 00:35:59 +03:00
--version
2020-12-29 21:27:48 +03:00
show general or ADDONCMD version
2017-03-30 00:35:59 +03:00
--debug[=N]
show debug output (levels 1-9, default: 1)
2020-12-21 07:11:35 +03:00
A @FILE argument will be expanded to the contents of FILE, which should
2020-12-25 04:26:17 +03:00
contain one command line option/argument per line. (To prevent this,
2017-09-30 20:00:44 +03:00
insert a -- argument before.)
2020-12-21 07:11:35 +03:00
KEYS
2020-12-25 04:26:17 +03:00
? shows a help dialog listing all keys. (Some of these also appear in
2020-12-21 07:11:35 +03:00
the quick help at the bottom of each screen.) Press ? again (or ESCAPE,
or LEFT, or q) to close it. The following keys work on most screens:
2016-06-10 22:12:45 +03:00
2020-12-21 07:11:35 +03:00
The cursor keys navigate: right (or enter) goes deeper, left returns to
2020-12-25 04:26:17 +03:00
the previous screen, up/down/page up/page down/home/end move up and
2020-07-18 22:37:06 +03:00
down through lists. Emacs-style (ctrl-p/ctrl-n/ctrl-f/ctrl-b) movement
2020-12-25 04:26:17 +03:00
keys are also supported (but not vi-style keys, since hledger-1.19,
sorry!). A tip: movement speed is limited by your keyboard repeat
rate, to move faster you may want to adjust it. (If you're on a mac,
2020-07-18 22:37:06 +03:00
the karabiner app is one way to do that.)
2020-12-25 04:26:17 +03:00
With shift pressed, the cursor keys adjust the report period, limiting
the transactions to be shown (by default, all are shown). shift-
down/up steps downward and upward through these standard report period
durations: year, quarter, month, week, day. Then, shift-left/right
moves to the previous/next period. T sets the report period to today.
With the --watch option, when viewing a "current" period (the current
2019-05-24 08:26:43 +03:00
day, week, month, quarter, or year), the period will move automatically
2020-12-21 07:11:35 +03:00
to track the current date. To set a non-standard period, you can use /
2019-05-24 08:26:43 +03:00
and a date: query.
2016-08-10 17:24:21 +03:00
2020-12-25 04:26:17 +03:00
/ lets you set a general filter query limiting the data shown, using
the same query terms as in hledger and hledger-web. While editing the
query, you can use CTRL-a/e/d/k, BS, cursor keys; press ENTER to set
2020-12-21 07:11:35 +03:00
it, or ESCAPEto cancel. There are also keys for quickly adjusting some
2020-12-25 04:26:17 +03:00
common filters like account depth and transaction status (see below).
2020-12-21 07:11:35 +03:00
BACKSPACE or DELETE removes all filters, showing all transactions.
2016-08-10 17:24:21 +03:00
2020-12-25 04:26:17 +03:00
As mentioned above, by default hledger-ui hides future transactions -
2020-02-22 22:33:50 +03:00
both ordinary transactions recorded in the journal, and periodic trans-
2020-12-25 04:26:17 +03:00
actions generated by rule. F toggles forecast mode, in which fu-
2020-12-21 07:11:35 +03:00
ture/forecasted transactions are shown.
2018-10-17 23:14:52 +03:00
2020-12-25 04:26:17 +03:00
ESCAPE resets the UI state and jumps back to the top screen, restoring
2020-07-18 22:37:06 +03:00
the app's initial state at startup. Or, it cancels minibuffer data en-
try or the help dialog.
2016-08-10 17:24:21 +03:00
2020-12-21 07:11:35 +03:00
CTRL-l redraws the screen and centers the selection if possible (selec-
2020-12-25 04:26:17 +03:00
tions near the top won't be centered, since we don't scroll above the
top).
2020-12-25 04:26:17 +03:00
g reloads from the data file(s) and updates the current screen and any
previous screens. (With large files, this could cause a noticeable
2016-08-10 17:24:21 +03:00
pause.)
2020-12-25 04:26:17 +03:00
I toggles balance assertion checking. Disabling balance assertions
2016-07-07 01:17:09 +03:00
temporarily can be useful for troubleshooting.
2020-12-25 04:26:17 +03:00
a runs command-line hledger's add command, and reloads the updated
2020-12-21 07:11:35 +03:00
file. This allows some basic data entry.
2016-06-07 19:38:31 +03:00
2020-12-25 04:26:17 +03:00
A is like a, but runs the hledger-iadd tool, which provides a terminal
interface. This key will be available if hledger-iadd is installed in
2020-07-18 22:37:06 +03:00
$path.
2020-12-25 04:26:17 +03:00
E runs $HLEDGER_UI_EDITOR, or $EDITOR, or a default (emacsclient -a ""
-nw) on the journal file. With some editors (emacs, vi), the cursor
will be positioned at the current transaction when invoked from the
register and transaction screens, and at the error location (if possi-
2019-05-24 08:26:43 +03:00
ble) when invoked from the error screen.
2016-06-20 21:15:09 +03:00
2020-12-25 04:26:17 +03:00
B toggles cost mode, showing amounts in their transaction price's com-
2020-12-21 07:11:35 +03:00
modity (like toggling the -B/--cost flag).
2019-11-22 04:32:30 +03:00
2020-12-25 04:26:17 +03:00
V toggles value mode, showing amounts' current market value in their
default valuation commodity (like toggling the -V/--market flag).
Note, "current market value" means the value on the report end date if
specified, otherwise today. To see the value on another date, you can
temporarily set that as the report end date. Eg: to see a transaction
as it was valued on july 30, go to the accounts or register screen,
2019-11-22 04:49:27 +03:00
press /, and add date:-7/30 to the query.
2020-12-21 07:11:35 +03:00
At most one of cost or value mode can be active at once.
2019-11-22 04:32:30 +03:00
2020-12-25 04:26:17 +03:00
There's not yet any visual reminder when cost or value mode is active;
2020-07-18 22:37:06 +03:00
for now pressing b b v should reliably reset to normal mode.
2019-11-22 04:32:30 +03:00
2020-12-25 04:26:17 +03:00
With --watch active, if you save an edit to the journal file while
2020-12-21 07:11:35 +03:00
viewing the transaction screen in cost or value mode, the B/V keys will
2020-12-25 04:26:17 +03:00
stop working. To work around, press g to force a manual reload, or
2019-11-22 04:32:30 +03:00
exit the transaction screen.
2020-07-18 22:37:06 +03:00
q quits the application.
2020-12-21 07:11:35 +03:00
Additional screen-specific keys are described below.
2020-12-21 07:11:35 +03:00
SCREENS
Accounts screen
2020-12-25 04:26:17 +03:00
This is normally the first screen displayed. It lists accounts and
their balances, like hledger's balance command. By default, it shows
all accounts and their latest ending balances (including the balances
of subaccounts). If you specify a query on the command line, it shows
2016-08-02 22:55:14 +03:00
just the matched accounts and the balances from matched transactions.
2020-12-25 04:26:17 +03:00
Account names are shown as a flat list by default; press t to toggle
tree mode. In list mode, account balances are exclusive of subac-
counts, except where subaccounts are hidden by a depth limit (see be-
low). In tree mode, all account balances are inclusive of subaccounts.
2018-10-17 23:14:52 +03:00
2020-12-25 04:26:17 +03:00
To see less detail, press a number key, 1 to 9, to set a depth limit.
2018-10-17 23:14:52 +03:00
Or use - to decrease and +/= to increase the depth limit. 0 shows even
2020-12-25 04:26:17 +03:00
less detail, collapsing all accounts to a single total. To remove the
depth limit, set it higher than the maximum account depth, or press ES-
CAPE.
2016-08-13 03:46:12 +03:00
H toggles between showing historical balances or period balances. His-
2020-12-25 04:26:17 +03:00
torical balances (the default) are ending balances at the end of the
report period, taking into account all transactions before that date
(filtered by the filter query if any), including transactions before
the start of the report period. In other words, historical balances
are what you would see on a bank statement for that account (unless
disturbed by a filter query). Period balances ignore transactions be-
fore the report start date, so they show the change in balance during
2016-08-13 03:46:12 +03:00
the report period. They are more useful eg when viewing a time log.
2017-06-16 04:47:28 +03:00
U toggles filtering by unmarked status, including or excluding unmarked
postings in the balances. Similarly, P toggles pending postings, and C
2020-12-25 04:26:17 +03:00
toggles cleared postings. (By default, balances include all postings;
if you activate one or two status filters, only those postings are in-
cluded; and if you activate all three, the filter is removed.)
2016-06-03 20:22:04 +03:00
R toggles real mode, in which virtual postings are ignored.
2020-12-25 04:26:17 +03:00
Z toggles nonzero mode, in which only accounts with nonzero balances
are shown (hledger-ui shows zero items by default, unlike command-line
2016-06-10 22:12:45 +03:00
hledger).
Press right or enter to view an account's transactions register.
Register screen
This screen shows the transactions affecting a particular account, like
a check register. Each line represents one transaction and shows:
2020-12-25 04:26:17 +03:00
o the other account(s) involved, in abbreviated form. (If there are
both real and virtual postings, it shows only the accounts affected
by real postings.)
2020-12-25 04:26:17 +03:00
o the overall change to the current account's balance; positive for an
inflow to this account, negative for an outflow.
2016-08-13 03:46:12 +03:00
o the running historical total or period total for the current account,
2020-12-25 04:26:17 +03:00
after the transaction. This can be toggled with H. Similar to the
accounts screen, the historical total is affected by transactions
(filtered by the filter query) before the report start date, while
2016-08-13 03:46:12 +03:00
the period total is not. If the historical total is not disturbed by
2020-12-25 04:26:17 +03:00
a filter query, it will be the running historical balance you would
2016-08-13 03:46:12 +03:00
see on a bank register for the current account.
2020-12-25 04:26:17 +03:00
Transactions affecting this account's subaccounts will be included in
2020-07-18 22:37:06 +03:00
the register if the accounts screen is in tree mode, or if it's in list
2020-12-25 04:26:17 +03:00
mode but this account has subaccounts which are not shown due to a
depth limit. In other words, the register always shows the transac-
tions contributing to the balance shown on the accounts screen. Tree
2020-07-18 22:37:06 +03:00
mode/list mode can be toggled with t here also.
2020-12-25 04:26:17 +03:00
U toggles filtering by unmarked status, showing or hiding unmarked
2017-06-16 04:47:28 +03:00
transactions. Similarly, P toggles pending transactions, and C toggles
2020-12-25 04:26:17 +03:00
cleared transactions. (By default, transactions with all statuses are
shown; if you activate one or two status filters, only those transac-
2019-01-27 02:56:43 +03:00
tions are shown; and if you activate all three, the filter is removed.)
2016-06-03 20:22:04 +03:00
R toggles real mode, in which virtual postings are ignored.
2020-12-25 04:26:17 +03:00
Z toggles nonzero mode, in which only transactions posting a nonzero
change are shown (hledger-ui shows zero items by default, unlike com-
2016-06-10 22:12:45 +03:00
mand-line hledger).
Press right (or enter) to view the selected transaction in detail.
2016-06-07 19:38:31 +03:00
Transaction screen
2020-12-25 04:26:17 +03:00
This screen shows a single transaction, as a general journal entry,
similar to hledger's print command and journal format (hledger_jour-
nal(5)).
2020-12-25 04:26:17 +03:00
The transaction's date(s) and any cleared flag, transaction code, de-
scription, comments, along with all of its account postings are shown.
Simple transactions have two postings, but there can be more (or in
certain cases, fewer).
2020-12-25 04:26:17 +03:00
up and down will step through all transactions listed in the previous
account register screen. In the title bar, the numbers in parentheses
show your position within that account register. They will vary de-
pending on which account register you came from (remember most transac-
2020-12-25 04:26:17 +03:00
tions appear in multiple account registers). The #N number preceding
them is the transaction's position within the complete unfiltered jour-
nal, which is a more stable id (at least until the next reload).
Error screen
2020-12-25 04:26:17 +03:00
This screen will appear if there is a problem, such as a parse error,
when you press g to reload. Once you have fixed the problem, press g
2016-06-10 22:12:45 +03:00
again to reload and resume normal operation. (Or, you can press escape
to cancel the reload attempt.)
ENVIRONMENT
COLUMNS The screen width to use. Default: the full terminal width.
LEDGER_FILE The journal file path when not specified with -f. Default:
2020-12-25 04:26:17 +03:00
~/.hledger.journal (on windows, perhaps C:/Users/USER/.hledger.jour-
nal).
2020-12-25 04:26:17 +03:00
A typical value is ~/DIR/YYYY.journal, where DIR is a version-con-
trolled finance directory and YYYY is the current year. Or ~/DIR/cur-
2020-02-07 21:45:57 +03:00
rent.journal, where current.journal is a symbolic link to YYYY.journal.
On Mac computers, you can set this and other environment variables in a
2020-12-25 04:26:17 +03:00
more thorough way that also affects applications started from the GUI
2020-02-07 21:45:57 +03:00
(say, an Emacs dock icon). Eg on MacOS Catalina I have a ~/.MacOSX/en-
vironment.plist file containing
{
"LEDGER_FILE" : "~/finance/current.journal"
}
To see the effect you may need to killall Dock, or reboot.
FILES
2020-12-25 04:26:17 +03:00
Reads data from one or more files in hledger journal, timeclock, time-
dot, or CSV format specified with -f, or $LEDGER_FILE, or
$HOME/.hledger.journal (on windows, perhaps
C:/Users/USER/.hledger.journal).
BUGS
2020-12-25 04:26:17 +03:00
The need to precede options with -- when invoked from hledger is awk-
ward.
-f- doesn't work (hledger-ui can't read from stdin).
-V affects only the accounts screen.
When you press g, the current and all previous screens are regenerated,
2020-12-25 04:26:17 +03:00
which may cause a noticeable pause with large files. Also there is no
visual indication that this is in progress.
2020-12-25 04:26:17 +03:00
--watch is not yet fully robust. It works well for normal usage, but
many file changes in a short time (eg saving the file thousands of
times with an editor macro) can cause problems at least on OSX. Symp-
toms include: unresponsive UI, periodic resetting of the cursor posi-
tion, momentary display of parse errors, high CPU usage eventually sub-
siding, and possibly a small but persistent build-up of CPU usage until
the program is restarted.
2020-12-25 04:26:17 +03:00
Also, if you are viewing files mounted from another machine, --watch
2019-09-01 07:02:00 +03:00
requires that both machine clocks are roughly in step.
REPORTING BUGS
2020-12-25 04:26:17 +03:00
Report bugs at http://bugs.hledger.org (or on the #hledger IRC channel
or hledger mail list)
AUTHORS
Simon Michael <simon@joyful.com> and contributors
COPYRIGHT
2020-12-09 07:10:54 +03:00
Copyright (C) 2007-2020 Simon Michael.
Released under GNU GPL v3 or later.
SEE ALSO
2020-12-21 07:11:35 +03:00
hledger(1), hledger-ui(1), hledger-web(1), ledger(1)
2020-12-21 07:11:35 +03:00
hledger-ui-1.20.99 December 2020 HLEDGER-UI(1)