oh-my-posh/src/segment_az_functions.go

34 lines
614 B
Go
Raw Normal View History

2021-04-02 10:36:50 -07:00
package main
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
}
2022-01-26 05:10:18 -08:00
func (az *AzFunc) template() string {
return languageTemplate
2021-04-02 10:36:50 -07:00
}
2022-01-26 05:10:18 -08: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
},
},
}
}
2022-01-26 05:10:18 -08:00
func (az *AzFunc) enabled() bool {
2021-04-02 10:36:50 -07:00
return az.language.enabled()
}