Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2017-03-20 | remove unnecessary option; lint and minor improvements | Jakob Schnitzer | -16/+28 | |
Beancount only supports '.' as decimal separator so making the decimal separator configurable doesn't serve any purpose and might confuse users. Make the regular expression matching in beancount#align_commodity a bit more precise. | ||||
2017-03-20 | lint align_commodity | Jakob Schnitzer | -18/+18 | |
2017-03-20 | autoload/beancount.vim: lint and remove trivial functions | Jakob Schnitzer | -59/+27 | |
2016-11-21 | deoplete: use b:beancount_root | Jakob Schnitzer | -7/+7 | |
2016-11-13 | Add caching back to python3 autocomplete implementation | Jason Chu | -1/+2 | |
2016-11-07 | Add support for completing event types | Jason Chu | -2/+13 | |
Only works in python3 because bean-query doesn't expose event types | ||||
2016-11-07 | Fix off-by-one error in initial line matching | Jason Chu | -2/+2 | |
2016-11-07 | Add support for python3 | Jason Chu | -5/+56 | |
Using beancount in process instead of shelling out to bean-query. | ||||
2016-11-07 | Remove errant print statement | Jason Chu | -1/+0 | |
2016-10-07 | Improve flag support | Konstantin Mikhailov | -1/+1 | |
Beancount allows to attach flags to transactions and even to the postings themselves. At the moment it supports 12 different flags. Full list can be found in beancount sources https://bitbucket.org/blais/beancount/src/tip/src/python/beancount/parser/lexer.l?fileviewer=file-view-default#lexer.l-199 The commit updates syntax highlighting and AlignCommodity function to respect all flags. | ||||
2016-10-01 | Support whole numbers in align commodity | Nathan Grigg | -10/+5 | |
The original implementation first looked for a decimal point and then fell back to whole number search, but this meant that a decimal in the price part of the directive would steal focus from the leading whole number. Fixes #14. | ||||
2016-10-01 | Fix AlignCommodity to work with balance and price | Konstantin Mikhailov | -1/+1 | |
Closes #21 and #24. Supports dates with slash separator. | ||||
2016-09-05 | Improved autocomplete | Jason Chu | -44/+128 | |
Merge pull #22 | ||||
2016-06-12 | Add a function to display the current line's beancount context in a scratch ↵ | Jason Chu | -0/+9 | |
window | ||||
2015-06-22 | Do not allow account names to end in colons (AlignCommodity) | Nathan Grigg | -1/+1 | |
2015-05-27 | add vim-ledger style completion as an option | Johann Klähn | -3/+23 | |
2015-05-15 | Follow include statements when completing accounts | Nathan Grigg | -11/+55 | |
Uses Python script to seek through multiple files for accounts, following 'include' statements. The list of accounts is cached to 'b:beancount_accounts'. You can specify the root file using 'b:beancount_root', and if this is not set, we assume the current file is the root. Included files that are not found are silently skipped. Closes #5. | ||||
2014-12-30 | Fix regex for omnicompletion | Nathan Grigg | -1/+1 | |
2014-11-21 | Add omnicomplete function for account names | Nathan Grigg | -0/+28 | |
2014-10-07 | AlignCommodity and Incoming | Nathan Grigg | -0/+38 | |