diff options
author | Craig Earls <enderw88@gmail.com> | 2013-03-02 20:20:58 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2013-03-02 20:20:58 -0700 |
commit | 4810da9398809fc090c7f044d3545050a465d2bb (patch) | |
tree | d10b628de9a763e092e21fd93754bb97bffcab6e | |
parent | c85a91b030f27b8cc22fa71bf0215b846b2be246 (diff) | |
download | fork-ledger-4810da9398809fc090c7f044d3545050a465d2bb.tar.gz fork-ledger-4810da9398809fc090c7f044d3545050a465d2bb.tar.bz2 fork-ledger-4810da9398809fc090c7f044d3545050a465d2bb.zip |
Remove auto account alignment as it interfered with account completion.
-rw-r--r-- | lisp/ldg-post.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ldg-post.el b/lisp/ldg-post.el index 2a736bfc..7105ef7a 100644 --- a/lisp/ldg-post.el +++ b/lisp/ldg-post.el @@ -133,10 +133,10 @@ the account" (setq column ledger-post-amount-alignment-column)) (save-excursion ;; Position the account - (beginning-of-line) + ;; (beginning-of-line) (set-mark (point)) - (delete-horizontal-space) - (insert ledger-default-acct-transaction-indent) + ;; (delete-horizontal-space) + ;; (insert ledger-default-acct-transaction-indent) (goto-char (1+ (line-end-position))) (let* ((mark-first (< (mark) (point))) (begin (if mark-first (mark) (point))) |