From af8620f381ebc6b3620b06f2c2d977bdfb040df6 Mon Sep 17 00:00:00 2001 From: Aaron Bull Schaefer Date: Tue, 10 Feb 2015 11:07:13 -0800 Subject: Properly highlight syntax containing hyphens and numbers This PR fixes a few things: 1. Allow numbers within tags; tested to be valid and shown in the upstream documentation. 2. Padding directives have a date before them, so they should not be anchored at the beginning of the line. 3. Hypens are allowed in meta-data attribute names; tested to be valid and shown in the upstream documentation. --- syntax/beancount.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'syntax/beancount.vim') diff --git a/syntax/beancount.vim b/syntax/beancount.vim index 21aa4f1..e55d0f4 100644 --- a/syntax/beancount.vim +++ b/syntax/beancount.vim @@ -17,7 +17,7 @@ syn match beanAmount "\v[-+]?[[:digit:].,]+" nextgroup=beanCurrency contained syn match beanCurrency "\v\w+" contained " Account name: alphanumeric with at least one colon. syn match beanAccount "\v[[:alnum:]]+:[-[:alnum:]:]+" contained -syn match beanTag "\v#[-a-z]+" contained +syn match beanTag "\v#[-[:alnum:]]+" contained syn match beanLink "\v\^\S+" contained @@ -45,14 +45,14 @@ syn region beanBalance matchgroup=beanKeyword start="balance" end="$" contained syn region beanPrice matchgroup=beanKeyword start="price" end="$" contained \ contains=beanCurrency,beanAmount syn keyword beanKeyword pushtag poptag -syn region beanPad matchgroup=beanKeyword start="^pad" end="$" contained +syn region beanPad matchgroup=beanKeyword start="pad" end="$" contained \ contains=beanAccount,beanComment syn region beanTxn matchgroup=beanKeyword start="\v(txn)?\s+[*!]" skip="^\s" \ end="^" contains=beanString,beanPost,beanComment,beanTag,beanLink,beanMeta contained syn region beanPost start="^\v\C\s+[A-Z]@=" end="$" \ contains=beanAccount,beanAmount,beanComment,beanCost,beanPrice -syn region beanMeta matchgroup=beanTag start="^\v\C\s+[a-z]+:(\s|$)@=" end="$" +syn region beanMeta matchgroup=beanTag start="^\v\C\s+[-a-z]+:(\s|$)@=" end="$" syn region beanCost start="{" end="}" contains=beanAmount contained syn match beanPrice "\V@@\?" nextgroup=beanAmount contained -- cgit v1.2.3-2-gb3c3