Add more testing primitives C++ highlights.

This commit is contained in:
2022-06-16 17:23:19 -04:00
parent 74ccc0222f
commit d8b82315f1

View File

@ -181,6 +181,12 @@ syn match cxxStlDangerousFunction "\(\.\)\@<=release()"
syn match cxxTestingCall "\<test\.expect\>"
syn match cxxTestingCall "\<test\.demand\>"
syn match cxxTestingCall "\<test\.expect_eq\>"
syn match cxxTestingCall "\<test\.demand_eq\>"
syn match cxxTestingCall "\<test\.expect_ne\>"
syn match cxxTestingCall "\<test\.demand_ne\>"
syn match cxxTestingCall "\<test\.expect_lt\>"
syn match cxxTestingCall "\<test\.demand_lt\>"
" Define the default highlighting.