(cmd *cobra.Command, value *string, defaultValue, filename string, infoFn func(), tempFileFn func(string))
| 106 | } |
| 107 | |
| 108 | func (f *Flag) OpenEditorW(cmd *cobra.Command, value *string, defaultValue, filename string, infoFn func(), tempFileFn func(string)) error { |
| 109 | return openEditorFlag(cmd, f, value, defaultValue, filename, infoFn, tempFileFn, false) |
| 110 | } |
| 111 | |
| 112 | func (f *Flag) OpenEditorU(cmd *cobra.Command, value *string, defaultValue string, filename string) error { |
| 113 | return openEditorFlag(cmd, f, value, defaultValue, filename, nil, nil, true) |
no test coverage detected