| 557 | } |
| 558 | |
| 559 | MetadataResult TrySetHighlightColor(ShellState &state, const string &component, const string &code) { |
| 560 | vector<string> args; |
| 561 | args.push_back("highlight_colors"); |
| 562 | args.push_back(component); |
| 563 | args.push_back(code); |
| 564 | return SetHighlightColors(state, args); |
| 565 | } |
| 566 | |
| 567 | enum class DeprecatedHighlightColors { |
| 568 | COMMENT, |
no test coverage detected