| 173 | } |
| 174 | |
| 175 | MetadataResult ToggleHeaders(ShellState &state, const vector<string> &args) { |
| 176 | state.showHeader = state.StringToBool(args[1]); |
| 177 | state.ShellSetFlag(ShellFlags::SHFLG_HeaderSet); |
| 178 | return MetadataResult::SUCCESS; |
| 179 | } |
| 180 | |
| 181 | MetadataResult SetHighlightColors(ShellState &state, const vector<string> &args) { |
| 182 | if (args.size() < 3 || args.size() > 4) { |
nothing calls this directly
no test coverage detected