launchConfigWizard launches the configuration wizard.
(cfg *config.Config, configPath string, activeProfile string)
| 165 | |
| 166 | // launchConfigWizard launches the configuration wizard. |
| 167 | func launchConfigWizard(cfg *config.Config, configPath string, activeProfile string) components.WizardResult { |
| 168 | return components.LaunchConfigWizard(cfg, configPath, activeProfile) |
| 169 | } |
| 170 | |
| 171 | func isKeyBindingValidationError(err error) bool { |
| 172 | if err == nil { |
no test coverage detected