aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Grigg2016-10-01 12:49:57 -0700
committerNathan Grigg2016-10-01 12:49:57 -0700
commite17eb3d4991fc049d08d382d3192992eaa033572 (patch)
tree2e857a40d0b04dd4bd6cc2f9bc0daec848f433d3
parent383bfad33a38a82a7fa6b5dfdf51fee11fa443bc (diff)
downloadvim-beancount-e17eb3d4991fc049d08d382d3192992eaa033572.tar.gz
Support whole numbers in align commodity
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.
-rw-r--r--autoload/beancount.vim15
1 files changed, 5 insertions, 10 deletions
diff --git a/autoload/beancount.vim b/autoload/beancount.vim
index 230ecba..2096679 100644
--- a/autoload/beancount.vim
+++ b/autoload/beancount.vim
@@ -9,10 +9,7 @@ function! beancount#align_commodity(line1, line2)
" Saving cursor position to adjust it if necessary.
let cursor_col = col('.')
let cursor_line = line('.')
- " This matches the line up to the first dot (or other separator),
- " excluding comments.
- " Note very nomagic so that the separator is not interpreted as regex.
- let separator_regex = '^\V\[^;]\{-}' . g:beancount_decimal_separator
+
" This lets me increment at start of loop, because of continue statements.
let i = a:line1 - 1
while i < a:line2
@@ -25,12 +22,10 @@ function! beancount#align_commodity(line1, line2)
if end_acc < 0 | continue | endif
" Where does commodity amount begin?
let end_space = matchend(s, '^ *', end_acc)
- " Find the first decimal point, not counting comments.
- let separator = matchend(s, separator_regex, end_space)
- if separator < 0
- " If there is no separator, pretend there's one after the last digit.
- let separator = matchend(s, '^\v[^;]*\d+') + 1
- endif
+
+ " Now look for a minus sign and a number, and align on the next column.
+ let l:comma = g:beancount_decimal_separator == ',' ? '.' : ','
+ let separator = matchend(s, '^\v(-)?[' . l:comma . '[:digit:]]+', end_space) + 1
if separator < 0 | continue | endif
let has_spaces = end_space - end_acc
let need_spaces = g:beancount_separator_col - separator + has_spaces