mirror of
https://github.com/mikefarah/yq.git
synced 2026-03-10 15:54:26 +00:00
20 lines
341 B
Go
20 lines
341 B
Go
package yqlib
|
|
|
|
type INIPreferences struct {
|
|
ColorsEnabled bool
|
|
}
|
|
|
|
func NewDefaultINIPreferences() INIPreferences {
|
|
return INIPreferences{
|
|
ColorsEnabled: false,
|
|
}
|
|
}
|
|
|
|
func (p *INIPreferences) Copy() INIPreferences {
|
|
return INIPreferences{
|
|
ColorsEnabled: p.ColorsEnabled,
|
|
}
|
|
}
|
|
|
|
var ConfiguredINIPreferences = NewDefaultINIPreferences()
|