Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Merge pull request #42 from wzyboy/bugfix/support-plus-sign-before-numbers | xentac | 2017-10-27 | -1/+7 |
|\ | | | | | Fix a regression bug in AlignCommodity | |||
| * | test: AlignCommodity with -/+ signs | Zhuoyun Wei | 2017-09-12 | -0/+6 |
| | | ||||
| * | Fix a regression bug in AlignCommodity | Zhuoyun Wei | 2017-09-12 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Since commit e17eb3d, putting a plus sign before a number causes :AlignCommodity to behaviour incorrectly. A reproducible example: Assets:Cash -100.00 USD Expenses:Food +100.00 USD This commit fixes the regression bug. | |||
* | | Merge pull request #41 from yegle/add-ale-linter-support | xentac | 2017-10-27 | -0/+7 |
|\ \ | |/ |/| | Add linter support for ALE vim plugin. | |||
| * | Fix default handler callback. | Yuchen Ying | 2017-10-24 | -1/+1 |
| | | ||||
| * | Add linter support for ALE vim plugin. | Yuchen Ying | 2017-10-24 | -0/+7 |
| | | | | | | | | | | ALE is a syntax checker similar to Syntastic, but support async in Vim8 and NeoVim. | |||
* | | Merge pull request #38 from yagebu/improvements | xentac | 2017-03-27 | -17/+56 |
|\ \ | | | | | | | Improvements to the deoplete source. | |||
| * | | deoplete: accounts can contain colons | Jakob Schnitzer | 2017-03-20 | -4/+6 |
| | | | ||||
| * | | deoplete: event completion | Jakob Schnitzer | 2017-03-20 | -3/+14 |
| | | | | | | | | | | | | Close #34. | |||
| * | | deoplete: commodity completion | Jakob Schnitzer | 2017-03-20 | -6/+15 |
| | | | | | | | | | | | | | | | | | | Match commodities after numbers. Close #33. | |||
| * | | deoplete: improve account completion; fix bug | Jakob Schnitzer | 2017-03-20 | -10/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | | Don't try to complete for accounts in all places, only after the appropriate keywords or at the start of a line. Also initialize the "cache" using a defaultdict as to not get errors when the completions are accessed before the file is loaded. | |||
* | | | Merge pull request #39 from yagebu/fixes-and-lint | xentac | 2017-03-26 | -151/+120 |
|\ \ \ | |/ / |/| | | Fixes and lint | |||
| * | | fix remaining lint issues | Jakob Schnitzer | 2017-03-20 | -29/+28 |
| | | | ||||
| * | | remove unnecessary option; lint and minor improvements | Jakob Schnitzer | 2017-03-20 | -29/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||
| * | | lint align_commodity | Jakob Schnitzer | 2017-03-20 | -18/+18 |
| | | | ||||
| * | | ftplugin lint and fix one comment | Jakob Schnitzer | 2017-03-20 | -10/+9 |
| | | | ||||
| * | | autoload/beancount.vim: lint and remove trivial functions | Jakob Schnitzer | 2017-03-20 | -59/+27 |
| | | | ||||
| * | | indent: fix for custom root accounts and lint | Jakob Schnitzer | 2017-03-20 | -16/+16 |
|/ / | ||||
* | | Merge pull request #40 from yagebu/test | xentac | 2017-03-17 | -0/+54 |
|\ \ | | | | | | | Tests; setup travis | |||
| * | | more align tests | Jakob Schnitzer | 2017-03-14 | -0/+12 |
| | | | ||||
| * | | add travis config | Jakob Schnitzer | 2017-03-14 | -0/+15 |
| | | | ||||
| * | | add vader.vim test for AlignCommodity | Jakob Schnitzer | 2017-03-14 | -0/+27 |
|/ / | ||||
* | | Update syntax to handle per-leg flags better. | Nathan Grigg | 2017-02-25 | -2/+5 |
| | | ||||
* | | Change return value of gather_candidates because str's aren't valid anymore | Jason Chu | 2017-01-19 | -5/+5 |
| | | | | | | | | See https://github.com/Shougo/deoplete.nvim/issues/421 and https://github.com/Shougo/deoplete.nvim/issues/419 | |||
* | | Merge pull request #31 from yagebu/master | xentac | 2016-11-21 | -16/+134 |
|\ \ | | | | | | | add deoplete source | |||
| * | | deoplete: use b:beancount_root | Jakob Schnitzer | 2016-11-21 | -8/+8 |
| | | | ||||
| * | | doc: document deoplete | Jakob Schnitzer | 2016-11-21 | -6/+18 |
| | | | ||||
| * | | doc: document options | Jakob Schnitzer | 2016-11-21 | -5/+36 |
| | | | ||||
| * | | add deoplete source | Jakob Schnitzer | 2016-11-20 | -0/+75 |
|/ / | ||||
* | | Merge pull request #28 from xentac/python3 | Nathan Grigg | 2016-11-14 | -10/+72 |
|\ \ | | | | | | | Add python3 support | |||
| * | | Add caching back to python3 autocomplete implementation | Jason Chu | 2016-11-13 | -1/+2 |
| | | | ||||
| * | | Add support for completing event types | Jason Chu | 2016-11-07 | -2/+13 |
| | | | | | | | | | | | | Only works in python3 because bean-query doesn't expose event types | |||
| * | | Fix off-by-one error in initial line matching | Jason Chu | 2016-11-07 | -2/+2 |
| | | | ||||
| * | | Add support for python3 | Jason Chu | 2016-11-07 | -5/+56 |
| | | | | | | | | | | | | Using beancount in process instead of shelling out to bean-query. | |||
| * | | Remove errant print statement | Jason Chu | 2016-11-07 | -1/+0 |
| | | | ||||
* | | | Merge branch 'pull30' | Nathan Grigg | 2016-11-11 | -2/+2 |
|\ \ \ | |/ / |/| | | ||||
| * | | add back support for `*` transaction flag | Jakob Schnitzer | 2016-11-11 | -2/+2 |
|/ / | ||||
* | | Merge pull request #26 from jtraub/flag_support | Nathan Grigg | 2016-10-08 | -5/+6 |
|\ \ | | | | | | | Improve flag support | |||
| * | | Improve flag support | Konstantin Mikhailov | 2016-10-07 | -5/+6 |
|/ / | | | | | | | | | | | | | | | | | | | 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. | |||
* | | Support whole numbers in align commodity | Nathan Grigg | 2016-10-01 | -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. | |||
* | | Fix AlignCommodity to work with balance and price | Konstantin Mikhailov | 2016-10-01 | -1/+1 |
| | | | | | | | | Closes #21 and #24. Supports dates with slash separator. | |||
* | | Fix highlight of txn directive | Konstantin Mikhailov | 2016-09-30 | -1/+1 |
| | | | | | | | | txn directive is mutually exclusive with flags (!*) | |||
* | | Improved autocomplete | Jason Chu | 2016-09-05 | -45/+129 |
| | | | | | | | | Merge pull #22 | |||
* | | Merge pull request #19 from xentac/bean-doctor-context | Nathan Grigg | 2016-06-14 | -0/+22 |
|\ \ | | | | | | | Add a function to display the current line's beancount context in a scratch window | |||
| * | | Add a function to display the current line's beancount context in a scratch ↵ | Jason Chu | 2016-06-12 | -0/+22 |
|/ / | | | | | | | window | |||
* | | Allow dates to be slash-separated | Nathan Grigg | 2016-04-25 | -2/+2 |
| | | | | | | | | (#17) | |||
* | | Merge pull request #13 from wzyboy | Nathan Grigg | 2016-04-24 | -1/+1 |
|\ \ | ||||
| * | | Allow underscores and capital letters in meta keys | Zhuoyun Wei | 2016-04-24 | -1/+1 |
|/ / | ||||
* | | Merge pull request #12 from xentac/master | Nathan Grigg | 2016-04-24 | -0/+12 |
|\ \ | | | | | | | Add fold rules for markdown style sections | |||
| * | | Add fold rules for markdown style sections | Jason Chu | 2016-02-01 | -0/+12 |
|/ / |