Merge pull request #127 from dritter/go_prompt

Adding Go version segment.
This commit is contained in:
Ben Hilburn
2015-10-21 16:51:44 -07:00
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -647,6 +647,16 @@ prompt_dir() {
"$1_prompt_segment" "$0" "blue" "$DEFAULT_COLOR" "$(print_icon 'HOME_ICON')$current_path"
}
# GO-prompt
prompt_go_version() {
local go_version
go_version=$(go version 2>&1 | grep -oe "^go[0-9.]*")
if [[ -n "$go_version" ]]; then
"$1_prompt_segment" "$0" "green" "255" "$go_version"
fi
}
# Command number (in local history)
prompt_history() {
"$1_prompt_segment" "$0" "244" "$DEFAULT_COLOR" '%h'