| 536 | } |
| 537 | |
| 538 | MetadataResult ToggleCompletionRendering(ShellState &state, const vector<string> &args) { |
| 539 | linenoiseSetCompletionRendering(state.StringToBool(args[1])); |
| 540 | return MetadataResult::SUCCESS; |
| 541 | } |
| 542 | |
| 543 | MetadataResult ToggleMultiLine(ShellState &state, const vector<string> &args) { |
| 544 | if (args.size() != 1) { |
nothing calls this directly
no test coverage detected