oh-my-posh/src/segments/az_functions.go

34 lines
618 B
Go
Raw Normal View History

2022-01-26 06:54:36 -08:00
package segments
2021-04-02 10:36:50 -07:00
import (
"oh-my-posh/environment"
"oh-my-posh/properties"
)
2022-01-26 05:10:18 -08:00
type AzFunc struct {
2021-12-03 11:19:57 -08:00
language
2021-04-02 10:36:50 -07:00
}
func (az *AzFunc) Template() string {
return languageTemplate
2021-04-02 10:36:50 -07:00
}
func (az *AzFunc) Init(props properties.Properties, env environment.Environment) {
2021-12-03 11:19:57 -08:00
az.language = language{
2021-04-02 10:36:50 -07:00
env: env,
props: props,
extensions: []string{"host.json", "local.settings.json", "function.json"},
2021-04-02 10:36:50 -07:00
commands: []*cmd{
{
executable: "func",
args: []string{"--version"},
regex: `(?P<version>[0-9.]+)`,
2021-04-02 10:36:50 -07:00
},
},
}
}
func (az *AzFunc) Enabled() bool {
return az.language.Enabled()
2021-04-02 10:36:50 -07:00
}