aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Chu2016-02-01 20:51:02 -0800
committerJason Chu2016-02-01 20:51:02 -0800
commitcc4f86ba5cace4aa7c705d6143af6e5152044b34 (patch)
treedf7d500bfc6c68baa6ae4870c07d70a7b7376d89
parentaad3db169d6057e11ceafa6a2dbe1ac34bbf49e4 (diff)
downloadvim-beancount-cc4f86ba5cace4aa7c705d6143af6e5152044b34.tar.gz
Add fold rules for markdown style sections
-rw-r--r--syntax/beancount.vim12
1 files changed, 12 insertions, 0 deletions
diff --git a/syntax/beancount.vim b/syntax/beancount.vim
index 4cf0704..fa7abf3 100644
--- a/syntax/beancount.vim
+++ b/syntax/beancount.vim
@@ -61,6 +61,18 @@ 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
+syn region beanHashHeaderFold
+ \ start="^\z(#\+\)"
+ \ skip="^\s*\z1#\+"
+ \ end="^\(#\)\@="
+ \ fold contains=TOP
+
+syn region beanStarHeaderFold
+ \ start="^\z(\*\+\)"
+ \ skip="^\s*\z1\*\+"
+ \ end="^\(\*\)\@="
+ \ fold contains=TOP
+
highlight default link beanKeyword Keyword
highlight default link beanOptionTitle Keyword
highlight default link beanDate Keyword