mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-26 21:51:05 +01:00
7 lines
252 B
Bash
7 lines
252 B
Bash
# get the golang version
|
|
function go_prompt_info() {
|
|
local go_prompt
|
|
go_prompt=$(go version | awk '{ print substr($3, 3) }')
|
|
[[ "${go_prompt}x" == "x" ]] && return
|
|
echo "${ZSH_THEME_GO_PROMPT_PREFIX}${go_prompt}${ZSH_THEME_GO_PROMPT_SUFFIX}"
|
|
}
|