| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | |
|
|\| | |
|
| |\ \
| | | |
| | | | |
Changed drewr.dat to drewr3.dat in docs
|
| |/ / |
|
|\| | |
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
fix typo in doc
[ci skip]
|
| |/ /
| | |
| | | |
very power*ful* expression language
|
| | | |
|
| |\ \
| | | |
| | | | |
Fix amount regexp in context computation.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Before the fix the amount required decimal point even when the decimal
digits were optional. Now both are optional.
The separator regexp didn't have capture group so all the further fields
shifted one field back (amount went into separator, commodity into
amount etc.)
|
| |\ \ \
| | |/ /
| |/| | |
Add an option to change amount-alignment mode.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
Make the default alignment behaviour the same as before 767ab3e, that
is, align on the last digit by default. A new option
`ledger-post-amount-alignment-at' now exists to adjust alignment
preference.
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
Balance at point and target commodity
I like it. Thanks.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The function `ledger-display-balance-at-point' called with the prefix
argument will now ask for the target commodity.
|
| |/ /
| | |
| | |
| | |
| | | |
The function provides completing read with all available commodities as
gathered by "ledger commodities".
|
|\| | |
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
Align amounts on the decimal separator.
Thank you.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
That is:
A $10.00
B $5
C -$15.00
Before the numbers aligned at the end of the last digit.
|
| |\ \
| | | |
| | | | |
Fill comment paragraph with ledger-post-align-dwim
|
| | | |
| | | |
| | | |
| | | |
| | | | |
In addition to re-aligning postings, if the point is in a comment, just
fill that comment as regular plaintext.
|
| |\ \ \
| | |/ /
| |/| | |
Fix amount-regex to properly capture integer part.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
If the integer part was 2 digits, because the integer part was
non-greedy, it only captured as much as necessary, namely one digit.
The other digit was captured by the 5th group's [:word:] not 4th because
that one is also optional. This results in incorrect reporting of
amount length and broken aligning.
Also move the decimal dot matching from 3rd group to 4th, and quote the
dot.
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
Add dwim align
Thank you.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
There is very little reason to have M-q bound to fill-paragraph in
ledger, so let's use it for aligning instead.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
If no region is active, align the current transaction. If a region is
active, align all postings in the region.
|
| |\ \ \
| | |/ /
| |/| |
| | | |
| | | | |
Documentation
[ci skip]
|
| | | | |
|
| | | | |
|
| |/ / |
|
|\| | |
|
| |\ \
| | | |
| | | | |
Wow! Thank you. I didn't know anyone was using this feature besides myself.
|
| |/ / |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
The end of a sentence should be followed by two spaces
[ci skip]
|
| | |
| | |
| | |
| | | |
[ci skip]
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
doc for get_at function
[ci skip]
|
| |/ / |
|
| | | |
|
| | |
| | |
| | | |
from help
|
| | | |
|
| | |
| | |
| | | |
when using version 1.59.0
|
| | |
| | |
| | |
| | |
| | |
| | | |
warning: equality comparison result unused [-Wunused-comparison]
BOOST_CHECK_THROW(v8 == v10, value_error);
~~~^~~~~~
|
|\| |
| | |
| | |
| | |
| | | |
Conflicts:
lisp/ledger-xact.el
|
| |\ \
| | | |
| | | | |
Fix xact-find-slot at end of buffer
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Using `ledger-add-transaction` to add a transaction with a date that
places it at the end of the buffer will "forget" to insert the newline
between it and the previous transaction. This error occurs in
`ledger-xact-find-slot` where the `(when (and (eobp) last-xact-start)`
is entered, but subsequently the `(if (eobp))` is false because the
point has been moved to the end of the prior exact, which is not the end
of the buffer.
The `if` expression is superfluous because the `when` expression has
already been entered, and it is broken becase the point gets
moved. Removing it fixes the behavior for transactions added at the end
of the buffer, and does not break the behavior for transactions added
elsewhere.
This was observed with Emacs 24.5.50.1 and Ledger 3.1.0-20141005.
[ci skip]
|
| | | |
|
|\| | |
|
| |\ \
| | | |
| | | | |
Thanks Thierry
|
| | | |
| | | |
| | | |
| | | | |
See Github pull request #414
|
| | | |
| | | |
| | | |
| | | | |
For consistency as this is a directive.
|