oh-my-posh/src/segment_text.go

33 lines
640 B
Go
Raw Normal View History

2019-03-13 04:14:30 -07:00
package main
type text struct {
2022-01-01 11:08:08 -08:00
props Properties
env environmentInfo
content string
2019-03-13 04:14:30 -07:00
}
const (
// TextProperty represents text to write
2019-03-13 04:14:30 -07:00
TextProperty Property = "text"
)
func (t *text) enabled() bool {
textProperty := t.props.getOneOfString(TextProperty, SegmentTemplate, "!!text property not defined!!")
template := &textTemplate{
Template: textProperty,
Context: t,
Env: t.env,
}
t.content = template.renderPlainContextTemplate(nil)
return len(t.content) > 0
}
func (t *text) string() string {
return t.content
2019-03-13 04:14:30 -07:00
}
2022-01-01 11:08:08 -08:00
func (t *text) init(props Properties, env environmentInfo) {
2019-03-13 04:14:30 -07:00
t.props = props
t.env = env
}