diff options
-rw-r--r-- | syntax/beancount.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/beancount.vim b/syntax/beancount.vim index fd7d18a..8d8bda5 100644 --- a/syntax/beancount.vim +++ b/syntax/beancount.vim @@ -36,7 +36,7 @@ syn region beanClose matchgroup=beanKeyword start="close" end="$" \ contains=beanAccount,beanComment syn region beanNote matchgroup=beanKeyword start="\vnote|document" end="$" \ contains=beanAccount,beanString,beanComment -syn region beanBalance matchgroup=beanKeyword start="balance" end="$" +syn region beanBalance matchgroup=beanKeyword start="balance\|price" end="$" \ contains=beanAccount,beanAmount,beanComment syn keyword beanKeyword pushtag poptag syn region beanPad matchgroup=beanKeyword start="^pad" end="$" |