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