Fix completion on payees
This commit is contained in:
parent
db4731d8a9
commit
2c07d4152a
1 changed files with 6 additions and 2 deletions
|
|
@ -75,8 +75,12 @@ Can indent, complete or align depending on context."
|
|||
(if (= (point) (line-beginning-position))
|
||||
(indent-to ledger-post-account-alignment-column)
|
||||
(save-excursion
|
||||
(re-search-backward ledger-account-or-metadata-regex
|
||||
(line-beginning-position) t))
|
||||
(re-search-backward
|
||||
(macroexpand
|
||||
`(rx (or (regex ,ledger-account-any-status-regex)
|
||||
(regex ,ledger-metadata-regex)
|
||||
(regex ,ledger-payee-any-status-regex))))
|
||||
(line-beginning-position) t))
|
||||
(when (= (point) (match-end 0))
|
||||
(ledger-pcomplete interactively))))
|
||||
(ledger-post-align-postings))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue