summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix crash when using -M with empty resultAlexis Hildebrandt2014-12-162-1/+38
| | | | | | | ledger -f /dev/null reg -M test causes a segmentation fault, see bug 730 and duplicates 1080 and 1084 for details. Kudos to Ikke for helping with debugging.
* [emacs] Make ledger-occur-mode auto-disable when restored by desktop.elSteve Purcell2014-12-161-1/+1
| | | | | | | The minor mode gets restored by desktop.el, and this has long caused errors. While the ideal would be to restore the mode along with the current narrowing regexp, this interim fix instead ensures that ledger-occur-mode will disable itself if it finds no regexp set.
* Fix typo in docsSteve Purcell2014-12-151-1/+1
|
* Fix ledger-schedule-upcoming so that is honor input file names.Craig Earls2014-12-141-3/+3
|
* [emacs] Add a menu entry for turning off ledger-occur-modeSteve Purcell2014-12-132-7/+6
|
* [emacs] define-derived-mode calls set-syntax-table automaticallySteve Purcell2014-12-131-1/+0
|
* [emacs] Add syntax table so that ";" comments are handledSteve Purcell2014-12-131-1/+8
| | | | | This allows things like goto-address-prog-mode to correctly highlight URLs inside comments.
* Add test case for off by one error in textual.cc fixed in a013a73bMartin Michlmayr2014-12-111-0/+10
|
* Merge pull request #339 from adrianlang/patch-1Martin Michlmayr2014-12-111-1/+1
|\ | | | | Fix off by one error in textual.cc
| * Fix off by one error in textual.ccAdrian Lang2014-12-111-1/+1
|/ | | This fixes parsing of transactions with single-character payees and comments.
* [emacs] Restore toggle behaviour of ledger-occur command, for menu usersSteve Purcell2014-12-101-8/+6
|
* Document changes to the narrowing functionality in ledger-occurSteve Purcell2014-12-101-1/+8
|
* [emacs] Turn ledger-occur-mode off via a separate command, and allow refreshingSteve Purcell2014-12-101-11/+27
|
* [emacs] Fix more byte compilation and other layout issuesSteve Purcell2014-12-102-1/+18
|
* [emacs] Declare when we're using clSteve Purcell2014-12-091-0/+1
|
* [emacs] Don't use setq-local, which only appeared in Emacs 24.4Steve Purcell2014-12-091-7/+7
| | | | /cc @enderw88
* [emacs] Simplify and tidy up ledger-occurSteve Purcell2014-12-093-71/+39
| | | | | Introducing a proper minor mode saves a lot of the hand-rolled fiddling about, like managing the overlay lifecycle and the modeline.
* [emacs] Fix byte compilation warningsSteve Purcell2014-12-094-24/+39
|
* [emacs] Set comment-start to ";" so that comment-dwim worksSteve Purcell2014-12-091-0/+1
|
* [emacs] Parse transaction leading lines more robustlySteve Purcell2014-12-093-27/+30
| | | | | | This began with noticing that the code didn't support the (ugly, yet valid) case of a tab between the date and txn description. I took the opportunity to make the regexes more consistent along the way.
* [emacs] Use markers instead of raw positions to make cleaning work betterSteve Purcell2014-12-092-60/+56
| | | | | | | Sometimes cleaning a buffer would leave the end of the buffer uncleaned, because the end position would be moved along the way. This commit makes the corresponding code use markers instead, which track the changes in the buffer, and therefore ensure that the entire buffer is acted upon.
* [emacs] When the first line is a txn, include it in ledger-sort-bufferSteve Purcell2014-12-091-0/+2
| | | | | Without this fix, ledger-sort-region tends to skip the first transaction when sorting a region or the entire buffer.
* Use font-lock-preprocessor-face as the basis for directive facesSteve Purcell2014-12-091-1/+1
|
* Merge pull request #338 from happyalu/patch-1Craig Earls2014-12-071-2/+2
|\ | | | | | | | | ledger-regex: Indian Rupee Symbol Thank you!
| * ledger-regex: Indian Rupee SymbolAlok Parlikar2014-12-071-2/+2
|/ | | Added the ₹ symbol to ledger-amount-regex
* Make sure there is alive window to switch back to when quitting reconcile bufferCraig Earls2014-12-071-3/+4
|
* ooops.Craig Earls2014-12-061-1/+1
|
* Add tangle expansion and correct menu entry for edit report.Craig Earls2014-12-061-11/+12
|
* Updated documentation to reflect recent changes to scheduling and answer ↵Craig Earls2014-12-061-31/+126
| | | | some clarifying questions,
* Merge commit '30df70ab1b02a05b4fc1198c932c4536dd480ef1'Craig Earls2014-12-051-2/+2
|\
| * Don't hard-code ledger-font-default-face to blackSteve Purcell2014-12-051-2/+2
| |
* | Make reconcile more robust to empty or bad account entries at the prompt.Craig Earls2014-12-052-32/+40
|/
* Merge branch 'master' of https://github.com/ledger/ledgerCraig Earls2014-12-051-4/+3
|\
| * Inherit standard font lock faces where appropriateSteve Purcell2014-12-051-4/+3
| |
* | Tweak ledger-clean-up to attempt to find the exact you were at when you ↵Craig Earls2014-12-051-5/+12
|/ | | | ordered the clean.
* Adjust navigate-find-end-of-act so that it will sort empty act.Craig Earls2014-12-042-31/+5
| | | | This is a bit pathological but as it turns out the fix makes all sorting a bit faster.
* Merge commit 'a65815607ff9648cd27d00de5551f5caad12314f'Craig Earls2014-12-031-2/+3
|\
| * Merge pull request #337 from afh/pull/DocTestMartin Michlmayr2014-12-031-2/+3
| |\ | | | | | | Fix DocTests running in non-standard width terminal
| | * Fix DocTests running in non-standard width terminalAlexis Hildebrandt2014-12-031-2/+3
| |/ | | | | | | | | | | | | | | The changes introduced with 56976a127c081a6a008c81966360003a8711a319 make --columns default to terminal width, as returned by ioctl() break the DocTests when run in a terminal with a width different from the standard of 80 columns.
* / Don't bomb out if the occur reggae has no matches.Craig Earls2014-12-031-32/+35
|/
* Fix change I accidentally committed when trying to fix reconcile in frames.Craig Earls2014-12-022-4/+7
|
* Another fonitification fix. and clean up a stray reference to function removed.Craig Earls2014-12-022-22/+14
|
* Adjust payee line fortification.Craig Earls2014-12-021-1/+3
|
* Doc string cleanup.Craig Earls2014-12-012-24/+27
|
* Doc string cleanup.Craig Earls2014-12-015-28/+36
|
* Fix effective date command.Craig Earls2014-12-011-12/+15
|
* Merge branch 'master' into ledger-mode-code-cleanupCraig Earls2014-12-016-33/+42
|\
| * Simplifies parsing of the beginning of an act. This allows fontifying ↵Craig Earls2014-12-012-19/+23
| | | | | | | | effective dates.
| * Merge pull request #336 from csrhodes/masterJohn Wiegley2014-12-011-0/+6
| |\ | | | | | | support date as well as datetime in Balance.value()
| | * support date as well as datetime in Balance.value()Christophe Rhodes2014-12-011-0/+6
| |/ | | | | | | cargo-cut'n'paste from py_amount.cc