summaryrefslogtreecommitdiff
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* Use vector notation for the backspace key.Jesse Alama2009-02-241-1/+1
| | | | | | * lisp/ledger.el: Use vector notation for the backspace key. Say "[backspace]" rather than "(kbd "<backspace>")".
* When starting ledger-report, print a help message.Jesse Alama2009-02-241-1/+2
| | | | * lisp/ledger.el: When starting ledger-report, print a help message.
* Make backspace scroll down in ledger-report buffers.Jesse Alama2009-02-241-0/+1
| | | | * lisp/ledger.el: Make backspace scroll down in ledger-report buffers.
* Make ledger-report buffers non-editable.Jesse Alama2009-02-241-2/+6
| | | | | | | | | | | * lisp/ledger.el: Make ledger-report buffers non-editable. Intuitively, a ledger-report buffer is a report -- the result of applying a function to your ledger data. Thus, the buffers created by ledger-reports aren't editable text; to "change" the ledger-report buffer, change the ledger data from which the report is derived. This commit alters ledger-report and ledger-report-redo.
* Indicate what the report name is in report buffersJesse Alama2009-02-241-1/+2
| | | | * lisp/ledger.el: Indicate what the report name is in report buffers
* The Great Renaming, Part IIJohn Wiegley2009-02-231-95/+95
| | | | | The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset.
* The Great RenamingJohn Wiegley2009-02-231-95/+95
| | | | | | | | | | | | To better follow naming standards used in the accounting community -- particularly those relating to double-entry accounting -- the following technical terms in Ledger have been changed: - what was "entry" is now "transaction" - what was "transaction" is now "posting" Correspondingly, the shorthand names "entry" and "xact" have been changed to "xact" and "post", respectively.
* Bury the report buffer after quitting.Jesse Alama2009-02-211-2/+3
|
* Only invoke new completion behavior if C-u is usedJohn Wiegley2009-02-151-14/+16
|
* Removed auto-reconciling behavior from ledger.elJohn Wiegley2009-02-131-43/+3
|
* Set coding-system-for-read, as well as writeJohn Wiegley2009-02-131-1/+2
|
* Set coding-system-for-write when talking to ledgerJohn Wiegley2009-02-131-5/+6
| | | | | | Otherwise, calling out to Ledger uses whatever the user's default happens to be, such as iso-latin-1. This caused problems for one user who had euro symbols encoding in utf-8 in his data file.
* Allow the use of days of the week to "entry", e.g: "thu kfc 11".John Wiegley2009-02-111-0/+3
|
* After hitting TAB to insert a new entry, position point at the amount.John Wiegley2009-02-111-0/+3
|
* In ledger-mode, if TAB is pressed in an entry, call out to "entry".John Wiegley2009-02-111-19/+27
|
* Extended Ledger's font-lock expression, based on code from Timothy Stotts.John Wiegley2009-02-061-5/+11
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-052-0/+2673
is in doc/, etc.