vim rustFuncCall contains rustAssert

This commit is contained in:
Ben Blum 2012-07-17 18:24:00 -04:00
parent b71a8827e3
commit 06c42b77d3
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ syn keyword rustConstant STDIN_FILENO STDOUT_FILENO STDERR_FILENO
syn match rustModPath "\w\(\w\)*::[^<]"he=e-3,me=e-3
syn match rustModPathSep "::"
syn match rustFuncCall "\w\(\w\)*("he=e-1,me=e-1
syn match rustFuncCall "\w\(\w\)*::<"he=e-3,me=e-3 " foo::<T>();
syn match rustFuncCall "\w\(\w\)*("he=e-1,me=e-1 contains=rustAssert
syn match rustFuncCall "\w\(\w\)*::<"he=e-3,me=e-3 contains=rustAssert " foo::<T>();
syn region rustString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=rustTodo