diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-23 11:14:38 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-23 11:18:22 -0700 |
commit | 04afb4b0397bb67d87bde389cd974e82e260d7ca (patch) | |
tree | 0018c1e978e80f31c4dd6f7914970f208ccc470e | |
parent | b5336bf0730bce4f0422add027201a49681f9592 (diff) | |
download | mu-04afb4b0397bb67d87bde389cd974e82e260d7ca.tar.gz |
1432 - contrast scenarios and recipes
-rw-r--r-- | mu.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mu.vim b/mu.vim index 4f09cd67..e036b0ea 100644 --- a/mu.vim +++ b/mu.vim @@ -47,8 +47,9 @@ syntax match muDelimiter "[{}]" | highlight link muDelimiter Delimiter syntax match muLabel " [^a-zA-Z0-9 \[\.][a-zA-Z0-9-]\+" | highlight link muLabel Function syntax match muAssign " <- " | highlight link muAssign SpecialChar syntax match muAssign "\<raw\>" -syntax keyword muControl reply reply-if reply-unless jump jump-if jump-unless loop loop-if loop-unless break-if break-unless | highlight link muControl Function +syntax keyword muControl reply reply-if reply-unless jump jump-if jump-unless loop loop-if loop-unless break-if break-unless default-space next-ingredient ingredient | highlight link muControl Function " common keywords -syntax keyword muFunc recipe default-space next-ingredient ingredient before after scenario run memory trace screen keyboard stalled finished | highlight link muFunc Statement +syntax keyword muRecipe recipe before after | highlight muRecipe ctermfg=208 +syntax keyword muScenario scenario | highlight muScenario ctermfg=34 let &cpo = s:save_cpo |