diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-01-06 12:01:42 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-01-06 12:01:42 -0800 |
commit | 458ee5e354fa55e770696fb19054d4c6bb60ead6 (patch) | |
tree | 776ee63df19d07a09c48b979bdf0298e44fdf476 | |
parent | 15ebb7eb9f1726fa934df037eb70f92fdda2f966 (diff) | |
download | mu-458ee5e354fa55e770696fb19054d4c6bb60ead6.tar.gz |
4910
-rw-r--r-- | mu.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mu.vim b/mu.vim index d62b792f..dd0763a7 100644 --- a/mu.vim +++ b/mu.vim @@ -82,17 +82,17 @@ syntax keyword muControl loop-if loop-unless syntax match muControl "^jump\>\| jump\>\|^break\>\| break\>\|^loop\>\| loop\>" syntax keyword muControl start-running syntax keyword muControl call-with-continuation-mark return-continuation-until-mark -highlight muControl ctermfg=3 +highlight link muControl Identifier syntax match muRecipe "->" syntax match muRecipe "^recipe\>\|^def\>\|^before\>\|^after\>\| -> " syntax keyword muRecipe recipe! def! function fn -highlight muRecipe ctermfg=208 +highlight link muRecipe PreProc -syntax match muScenario "^scenario\>" | highlight muScenario ctermfg=34 +syntax match muScenario "^scenario\>" | highlight link muScenario Statement syntax keyword muPendingScenario pending-scenario | highlight link muPendingScenario SpecialChar syntax match muData "^type\>\|^container\>" syntax keyword muData exclusive-container -highlight muData ctermfg=226 +highlight link muData Constant let &cpo = s:save_cpo |