1# cache functions
2regexp=\b(loading|updating|creating) cache\b
3colours=yellow bold
4.........
5# checking
6regexp=\bchecking\s*(for|if|whether|command|how|that)?(\s*to)?\b
7colours=bold blue
8.........
9# result is complex
10regexp=\.\.\. .*$
11colours=bold yellow
12.........
13# check succeeded
14regexp=\.\.\.( \(cached\))? yes$
15colours=bold cyan
16.........
17# check did not succeed
18regexp=\.\.\.( \(cached\))? no$
19colours=bold red
20.........
21# ... should be normal
22regexp=\.\.\.
23colours=default
24.........
25# creating stuff
26regexp=\bcreating\b
27colours=green
28