update packages

This commit is contained in:
2022-01-04 21:35:17 +01:00
parent 1d5275c946
commit 8de00e5202
700 changed files with 42441 additions and 85378 deletions

View File

@@ -55,7 +55,7 @@
:group 'ledger-reconcile)
(defcustom ledger-narrow-on-reconcile t
"If t, limit transactions shown in main buffer to those matching the reconcile regex."
"If t, show only transactions matching the reconcile regex in the main buffer."
:type 'boolean
:group 'ledger-reconcile)
@@ -67,7 +67,7 @@ buffer then that transaction will be shown in its source buffer."
:group 'ledger-reconcile)
(defcustom ledger-reconcile-force-window-bottom nil
"If t, make the reconcile window appear along the bottom of the register window and resize."
"If t, show the reconcile window below the register window and resize."
:type 'boolean
:group 'ledger-reconcile)
@@ -121,12 +121,13 @@ if string is longer, it is not truncated unless
(defcustom ledger-reconcile-sort-key "(0)"
"Key for sorting reconcile buffer.
Possible values are '(date)', '(amount)', '(payee)' or '(0)' for no sorting, i.e. using ledger file order."
Possible values are '(date)', '(amount)', '(payee)' or '(0)' for
no sorting, i.e. using ledger file order."
:type 'string
:group 'ledger-reconcile)
(defcustom ledger-reconcile-insert-effective-date nil
"If t, prompt for effective date when clearing transactions during reconciliation."
"If t, prompt for effective date when clearing transactions."
:type 'boolean
:group 'ledger-reconcile)
@@ -553,10 +554,10 @@ moved and recentered. If they aren't strange things happen."
(add-hook 'after-save-hook 'ledger-reconcile-refresh-after-save nil t)
;; Narrow the ledger buffer
(if ledger-narrow-on-reconcile
(ledger-occur (regexp-quote account)))
(with-current-buffer rbuf
(save-excursion
(if ledger-narrow-on-reconcile
(ledger-occur account)))
(if (> (ledger-reconcile-refresh) 0)
(ledger-reconcile-change-target target))
(ledger-display-balance)))))