(hostname string)
| 161 | } |
| 162 | |
| 163 | func (c *cfg) PreferEditorPrompt(hostname string) gh.ConfigEntry { |
| 164 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 165 | return c.GetOrDefault(hostname, preferEditorPromptKey).Unwrap() |
| 166 | } |
| 167 | |
| 168 | func (c *cfg) Spinner(hostname string) gh.ConfigEntry { |
| 169 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected