hledger
hledger copied to clipboard
Robust, fast, intuitive plain text accounting tool with CLI, TUI and web interfaces.
While generally it is a great principle that the tools like `hledger` should not change the ledger file they are dealing with, given the existence of `hledger-add` and `hledger-web`, both...
Look like currently `hledger` only print register in the order of date. The `--sort` option of `ledger register` is very helpful when users want to get the expenses of most...
As reported in chat, `-f tsv:-` and `-f ssv:-` don't work like `-f csv:-`. That seems natural to expect, so we'd like to support it. Currently hledger's file path prefixes...
As discussed at https://www.reddit.com/r/plaintextaccounting/comments/1arkzfg/can_hledger_import_use_account_mappings_from/ : > hledger's CSV conversion rules look at each record in isolation, with no memory (except what you have encoded in the static rules). > ......
Related to #2167: I find the existing theme names a bit unclear. Here are my notes: - default: normally shows me a light background and some colour. But when run...
There are often cases that we might want to record payee on a per-posting basis. For example: ``` 2024-1-2 an absurd transaction a:b:c $1 ; payee: Mr A a:b:c $2...
The `roi` command includes unwanted amounts when given a period and dates on postings. For example with `test.journal` as: ``` 2020-12-01 Test1 A +200.00 ; date:2020-12-01 B +100.00 ; date:2021-01-01...
Slightly modified snake oil example: ``` P 2019-09-30 SNKOIL $1.075 2019-12-20 Investing in Snake Oil assets:cash investment:snake oil 100 SNKOIL @@ $107.5 P 2019-12-23 SNKOIL $1.08 2019-12-23 Fear of missing...
Reported on the mail list by LucaBH. Here's a small repro: ``` ~ every 31st day from 2024-07 to 2024-09 (a) 1 ``` ``` $ hledger -f a.j print --forecast=2024...
Fixes #2218 by removing instances of periodict transactions that happen before periodic transaction start date (introduced by splitSpan)