| 212 | } |
| 213 | |
| 214 | MetadataResult ToggleHighlightResult(ShellState &state, const vector<string> &args) { |
| 215 | state.highlight_results = state.StringToBool(args[1]) ? OptionType::ON : OptionType::OFF; |
| 216 | return MetadataResult::SUCCESS; |
| 217 | } |
| 218 | |
| 219 | MetadataResult ShowHelp(ShellState &state, const vector<string> &args) { |
| 220 | if (args.size() >= 2) { |
nothing calls this directly
no test coverage detected