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