|
|
@ -169,8 +169,7 @@ esac
|
|
|
|
# color scheme
|
|
|
|
# color scheme
|
|
|
|
################################################################
|
|
|
|
################################################################
|
|
|
|
|
|
|
|
|
|
|
|
local DEFAULT_COLOR DEFAULT_COLOR_INVERTED DEFAULT_COLOR_DARK
|
|
|
|
if [[ "$POWERLEVEL9K_COLOR_SCHEME" == "light" ]]; then
|
|
|
|
if [[ $POWERLEVEL9K_COLOR_SCHEME == "light" ]]; then
|
|
|
|
|
|
|
|
DEFAULT_COLOR=white
|
|
|
|
DEFAULT_COLOR=white
|
|
|
|
DEFAULT_COLOR_INVERTED=black
|
|
|
|
DEFAULT_COLOR_INVERTED=black
|
|
|
|
DEFAULT_COLOR_DARK="252"
|
|
|
|
DEFAULT_COLOR_DARK="252"
|
|
|
@ -180,8 +179,8 @@ else
|
|
|
|
DEFAULT_COLOR_DARK="236"
|
|
|
|
DEFAULT_COLOR_DARK="236"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
local VCS_FOREGROUND_COLOR=$DEFAULT_COLOR
|
|
|
|
VCS_FOREGROUND_COLOR=$DEFAULT_COLOR
|
|
|
|
local VCS_FOREGROUND_COLOR_DARK=$DEFAULT_COLOR_DARK
|
|
|
|
VCS_FOREGROUND_COLOR_DARK=$DEFAULT_COLOR_DARK
|
|
|
|
|
|
|
|
|
|
|
|
# If user has defined custom colors for the `vcs` segment, override the defaults
|
|
|
|
# If user has defined custom colors for the `vcs` segment, override the defaults
|
|
|
|
if [[ -n $POWERLEVEL9K_VCS_FOREGROUND ]]; then
|
|
|
|
if [[ -n $POWERLEVEL9K_VCS_FOREGROUND ]]; then
|
|
|
@ -198,13 +197,13 @@ fi
|
|
|
|
setopt prompt_subst
|
|
|
|
setopt prompt_subst
|
|
|
|
autoload -Uz vcs_info
|
|
|
|
autoload -Uz vcs_info
|
|
|
|
|
|
|
|
|
|
|
|
local VCS_WORKDIR_DIRTY=false
|
|
|
|
VCS_WORKDIR_DIRTY=false
|
|
|
|
local VCS_CHANGESET_PREFIX=''
|
|
|
|
VCS_CHANGESET_PREFIX=''
|
|
|
|
if [[ "$POWERLEVEL9K_SHOW_CHANGESET" == true ]]; then
|
|
|
|
if [[ "$POWERLEVEL9K_SHOW_CHANGESET" == true ]]; then
|
|
|
|
# Default: Just display the first 12 characters of our changeset-ID.
|
|
|
|
# Default: Just display the first 12 characters of our changeset-ID.
|
|
|
|
local VCS_CHANGESET_HASH_LENGTH=12
|
|
|
|
local VCS_CHANGESET_HASH_LENGTH=12
|
|
|
|
if [[ -n $POWERLEVEL9K_CHANGESET_HASH_LENGTH ]]; then
|
|
|
|
if [[ -n "$POWERLEVEL9K_CHANGESET_HASH_LENGTH" ]]; then
|
|
|
|
VCS_CHANGESET_HASH_LENGTH=$POWERLEVEL9K_CHANGESET_HASH_LENGTH
|
|
|
|
VCS_CHANGESET_HASH_LENGTH="$POWERLEVEL9K_CHANGESET_HASH_LENGTH"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
VCS_CHANGESET_PREFIX="%F{$VCS_FOREGROUND_COLOR_DARK}$VCS_COMMIT_ICON%0.$VCS_CHANGESET_HASH_LENGTH""i%f"
|
|
|
|
VCS_CHANGESET_PREFIX="%F{$VCS_FOREGROUND_COLOR_DARK}$VCS_COMMIT_ICON%0.$VCS_CHANGESET_HASH_LENGTH""i%f"
|
|
|
@ -213,7 +212,7 @@ fi
|
|
|
|
zstyle ':vcs_info:*' enable git hg
|
|
|
|
zstyle ':vcs_info:*' enable git hg
|
|
|
|
zstyle ':vcs_info:*' check-for-changes true
|
|
|
|
zstyle ':vcs_info:*' check-for-changes true
|
|
|
|
|
|
|
|
|
|
|
|
local VCS_DEFAULT_FORMAT="$VCS_CHANGESET_PREFIX%F{$VCS_FOREGROUND_COLOR}%b%c%u%m%f"
|
|
|
|
VCS_DEFAULT_FORMAT="$VCS_CHANGESET_PREFIX%F{$VCS_FOREGROUND_COLOR}%b%c%u%m%f"
|
|
|
|
zstyle ':vcs_info:git:*' formats "%F{$VCS_FOREGROUND_COLOR}$VCS_GIT_ICON%f $VCS_DEFAULT_FORMAT"
|
|
|
|
zstyle ':vcs_info:git:*' formats "%F{$VCS_FOREGROUND_COLOR}$VCS_GIT_ICON%f $VCS_DEFAULT_FORMAT"
|
|
|
|
zstyle ':vcs_info:hg:*' formats "%F{$VCS_FOREGROUND_COLOR}$VCS_HG_ICON%f $VCS_DEFAULT_FORMAT"
|
|
|
|
zstyle ':vcs_info:hg:*' formats "%F{$VCS_FOREGROUND_COLOR}$VCS_HG_ICON%f $VCS_DEFAULT_FORMAT"
|
|
|
|
|
|
|
|
|
|
|
@ -315,11 +314,11 @@ right_prompt_segment() {
|
|
|
|
prompt_vcs() {
|
|
|
|
prompt_vcs() {
|
|
|
|
local vcs_prompt="${vcs_info_msg_0_}"
|
|
|
|
local vcs_prompt="${vcs_info_msg_0_}"
|
|
|
|
|
|
|
|
|
|
|
|
if [[ -n $vcs_prompt ]]; then
|
|
|
|
if [[ -n "$vcs_prompt" ]]; then
|
|
|
|
if [[ "$VCS_WORKDIR_DIRTY" == true ]]; then
|
|
|
|
if [[ "$VCS_WORKDIR_DIRTY" == true ]]; then
|
|
|
|
$1_prompt_segment $0_MODIFIED yellow $DEFAULT_COLOR
|
|
|
|
$1_prompt_segment "$0_MODIFIED" "yellow" "$DEFAULT_COLOR"
|
|
|
|
else
|
|
|
|
else
|
|
|
|
$1_prompt_segment $0 green $DEFAULT_COLOR
|
|
|
|
$1_prompt_segment "$0" "green" "$DEFAULT_COLOR"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo -n "%F{$VCS_FOREGROUND_COLOR}%f$vcs_prompt "
|
|
|
|
echo -n "%F{$VCS_FOREGROUND_COLOR}%f$vcs_prompt "
|
|
|
@ -372,7 +371,7 @@ function +vi-git-tagname() {
|
|
|
|
local tag
|
|
|
|
local tag
|
|
|
|
|
|
|
|
|
|
|
|
tag=$(git describe --tags --exact-match HEAD 2>/dev/null)
|
|
|
|
tag=$(git describe --tags --exact-match HEAD 2>/dev/null)
|
|
|
|
[[ -n ${tag} ]] && hook_com[branch]=" %F{$VCS_FOREGROUND_COLOR}$VCS_TAG_ICON${tag}%f"
|
|
|
|
[[ -n "${tag}" ]] && hook_com[branch]=" %F{$VCS_FOREGROUND_COLOR}$VCS_TAG_ICON${tag}%f"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Show count of stashed changes
|
|
|
|
# Show count of stashed changes
|
|
|
@ -399,7 +398,7 @@ function +vi-hg-bookmarks() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function +vi-vcs-detect-changes() {
|
|
|
|
function +vi-vcs-detect-changes() {
|
|
|
|
if [[ -n ${hook_com[staged]} ]] || [[ -n ${hook_com[unstaged]} ]]; then
|
|
|
|
if [[ -n "${hook_com[staged]}" ]] || [[ -n "${hook_com[unstaged]}" ]]; then
|
|
|
|
VCS_WORKDIR_DIRTY=true
|
|
|
|
VCS_WORKDIR_DIRTY=true
|
|
|
|
else
|
|
|
|
else
|
|
|
|
VCS_WORKDIR_DIRTY=false
|
|
|
|
VCS_WORKDIR_DIRTY=false
|
|
|
@ -417,10 +416,10 @@ CURRENT_BG='NONE'
|
|
|
|
|
|
|
|
|
|
|
|
# AWS Profile
|
|
|
|
# AWS Profile
|
|
|
|
prompt_aws() {
|
|
|
|
prompt_aws() {
|
|
|
|
local aws_profile=$AWS_DEFAULT_PROFILE
|
|
|
|
local aws_profile="$AWS_DEFAULT_PROFILE"
|
|
|
|
if [[ -n $aws_profile ]];
|
|
|
|
if [[ -n "$aws_profile" ]];
|
|
|
|
then
|
|
|
|
then
|
|
|
|
$1_prompt_segment $0 red white "$AWS_ICON $aws_profile"
|
|
|
|
$1_prompt_segment "$0" red white "$AWS_ICON $aws_profile"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -428,18 +427,18 @@ prompt_aws() {
|
|
|
|
# Note that if $DEFAULT_USER is not set, this prompt segment will always print
|
|
|
|
# Note that if $DEFAULT_USER is not set, this prompt segment will always print
|
|
|
|
prompt_context() {
|
|
|
|
prompt_context() {
|
|
|
|
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
|
|
|
|
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
|
|
|
|
$1_prompt_segment $0 $DEFAULT_COLOR "011" "%(!.%{%F{yellow}%}.)$USER@%m"
|
|
|
|
$1_prompt_segment "$0" "$DEFAULT_COLOR" "011" "%(!.%{%F{yellow}%}.)$USER@%m"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Dir: current working directory
|
|
|
|
# Dir: current working directory
|
|
|
|
prompt_dir() {
|
|
|
|
prompt_dir() {
|
|
|
|
$1_prompt_segment $0 blue $DEFAULT_COLOR '%~'
|
|
|
|
$1_prompt_segment "$0" "blue" "$DEFAULT_COLOR" '%~'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Command number (in local history)
|
|
|
|
# Command number (in local history)
|
|
|
|
prompt_history() {
|
|
|
|
prompt_history() {
|
|
|
|
$1_prompt_segment $0 "244" $DEFAULT_COLOR '%h'
|
|
|
|
$1_prompt_segment "$0" "244" "$DEFAULT_COLOR" '%h'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Right Status: (return code, root status, background jobs)
|
|
|
|
# Right Status: (return code, root status, background jobs)
|
|
|
@ -449,24 +448,24 @@ prompt_longstatus() {
|
|
|
|
local symbols bg
|
|
|
|
local symbols bg
|
|
|
|
symbols=()
|
|
|
|
symbols=()
|
|
|
|
|
|
|
|
|
|
|
|
if [[ $RETVAL -ne 0 ]]; then
|
|
|
|
if [[ "$RETVAL" -ne 0 ]]; then
|
|
|
|
symbols+="%{%F{"226"}%}%? ↵"
|
|
|
|
symbols+="%F{226}%? ↵"
|
|
|
|
bg="009"
|
|
|
|
bg="009"
|
|
|
|
else
|
|
|
|
else
|
|
|
|
symbols+="%{%F{"046"}%}$OK_ICON"
|
|
|
|
symbols+="%{%F{"046"}%}$OK_ICON"
|
|
|
|
bg="008"
|
|
|
|
bg="008"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
[[ $UID -eq 0 ]] && symbols+="%{%F{yellow}%} $ROOT_ICON"
|
|
|
|
[[ "$UID" -eq 0 ]] && symbols+="%{%F{yellow}%} $ROOT_ICON"
|
|
|
|
[[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}$BACKGROUND_JOBS_ICON"
|
|
|
|
[[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}$BACKGROUND_JOBS_ICON"
|
|
|
|
|
|
|
|
|
|
|
|
[[ -n "$symbols" ]] && $1_prompt_segment $0 $bg $DEFAULT_COLOR "$symbols"
|
|
|
|
[[ -n "$symbols" ]] && $1_prompt_segment "$0" "$bg" "$DEFAULT_COLOR" "$symbols"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# rbenv information
|
|
|
|
# rbenv information
|
|
|
|
prompt_rbenv() {
|
|
|
|
prompt_rbenv() {
|
|
|
|
if [[ -n "$RBENV_VERSION" ]]; then
|
|
|
|
if [[ -n "$RBENV_VERSION" ]]; then
|
|
|
|
$1_prompt_segment $0 red $DEFAULT_COLOR "$RBENV_VERSION"
|
|
|
|
$1_prompt_segment "$0" "red" "$DEFAULT_COLOR" "$RBENV_VERSION"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -476,7 +475,7 @@ prompt_rspec_stats() {
|
|
|
|
local code_amount=$(ls -1 app/**/*.rb | wc -l)
|
|
|
|
local code_amount=$(ls -1 app/**/*.rb | wc -l)
|
|
|
|
local tests_amount=$(ls -1 spec/**/*.rb | wc -l)
|
|
|
|
local tests_amount=$(ls -1 spec/**/*.rb | wc -l)
|
|
|
|
|
|
|
|
|
|
|
|
build_test_stats $1 $0 $code_amount $tests_amount "RSpec $TEST_ICON"
|
|
|
|
build_test_stats "$1" $0 "$code_amount" $tests_amount "RSpec $TEST_ICON"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -485,7 +484,7 @@ prompt_rvm() {
|
|
|
|
local rvm_prompt
|
|
|
|
local rvm_prompt
|
|
|
|
rvm_prompt=`rvm-prompt`
|
|
|
|
rvm_prompt=`rvm-prompt`
|
|
|
|
if [ "$rvm_prompt" != "" ]; then
|
|
|
|
if [ "$rvm_prompt" != "" ]; then
|
|
|
|
$1_prompt_segment $0 "240" $DEFAULT_COLOR "$rvm_prompt $RUBY_ICON "
|
|
|
|
$1_prompt_segment "$0" "240" "$DEFAULT_COLOR" "$rvm_prompt $RUBY_ICON "
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -494,11 +493,11 @@ prompt_rvm() {
|
|
|
|
prompt_status() {
|
|
|
|
prompt_status() {
|
|
|
|
local symbols
|
|
|
|
local symbols
|
|
|
|
symbols=()
|
|
|
|
symbols=()
|
|
|
|
[[ $RETVAL -ne 0 ]] && symbols+="%{%F{red}%}$FAIL_ICON"
|
|
|
|
[[ "$RETVAL" -ne 0 ]] && symbols+="%{%F{red}%}$FAIL_ICON"
|
|
|
|
[[ $UID -eq 0 ]] && symbols+="%{%F{yellow}%} $ROOT_ICON"
|
|
|
|
[[ "$UID" -eq 0 ]] && symbols+="%{%F{yellow}%} $ROOT_ICON"
|
|
|
|
[[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}$BACKGROUND_JOBS_ICON"
|
|
|
|
[[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}$BACKGROUND_JOBS_ICON"
|
|
|
|
|
|
|
|
|
|
|
|
[[ -n "$symbols" ]] && $1_prompt_segment $0 $DEFAULT_COLOR default "$symbols"
|
|
|
|
[[ -n "$symbols" ]] && $1_prompt_segment "$0" "$DEFAULT_COLOR" "default" "$symbols"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Symfony2-PHPUnit test ratio
|
|
|
|
# Symfony2-PHPUnit test ratio
|
|
|
@ -507,33 +506,33 @@ prompt_symfony2_tests() {
|
|
|
|
local code_amount=$(ls -1 src/**/*.php | grep -v Tests | wc -l)
|
|
|
|
local code_amount=$(ls -1 src/**/*.php | grep -v Tests | wc -l)
|
|
|
|
local tests_amount=$(ls -1 src/**/*.php | grep Tests | wc -l)
|
|
|
|
local tests_amount=$(ls -1 src/**/*.php | grep Tests | wc -l)
|
|
|
|
|
|
|
|
|
|
|
|
build_test_stats $1 $0 $code_amount $tests_amount "SF2 $TEST_ICON"
|
|
|
|
build_test_stats "$1" "$0" "$code_amount" "$tests_amount" "SF2 $TEST_ICON"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Show a ratio of tests vs code
|
|
|
|
# Show a ratio of tests vs code
|
|
|
|
build_test_stats() {
|
|
|
|
build_test_stats() {
|
|
|
|
local code_amount=$3
|
|
|
|
local code_amount="$3"
|
|
|
|
local tests_amount=$4+0.00001
|
|
|
|
local tests_amount="$4"+0.00001
|
|
|
|
local headline=$5
|
|
|
|
local headline="$5"
|
|
|
|
|
|
|
|
|
|
|
|
# Set float precision to 2 digits:
|
|
|
|
# Set float precision to 2 digits:
|
|
|
|
typeset -F 2 ratio
|
|
|
|
typeset -F 2 ratio
|
|
|
|
local ratio=$(( (tests_amount/code_amount) * 100 ))
|
|
|
|
local ratio=$(( (tests_amount/code_amount) * 100 ))
|
|
|
|
|
|
|
|
|
|
|
|
[[ ratio -ge 0.75 ]] && $1_prompt_segment ${2}_GOOD cyan $DEFAULT_COLOR "$headline: $ratio%%"
|
|
|
|
[[ ratio -ge 0.75 ]] && $1_prompt_segment "${2}_GOOD" "cyan" "$DEFAULT_COLOR" "$headline: $ratio%%"
|
|
|
|
[[ ratio -ge 0.5 && ratio -lt 0.75 ]] && $1_prompt_segment $2_AVG yellow $DEFAULT_COLOR "$headline: $ratio%%"
|
|
|
|
[[ ratio -ge 0.5 && ratio -lt 0.75 ]] && $1_prompt_segment "$2_AVG" "yellow" "$DEFAULT_COLOR" "$headline: $ratio%%"
|
|
|
|
[[ ratio -lt 0.5 ]] && $1_prompt_segment $2_BAD red $DEFAULT_COLOR "$headline: $ratio%%"
|
|
|
|
[[ ratio -lt 0.5 ]] && $1_prompt_segment "$2_BAD" "red" "$DEFAULT_COLOR" "$headline: $ratio%%"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# System time
|
|
|
|
# System time
|
|
|
|
prompt_time() {
|
|
|
|
prompt_time() {
|
|
|
|
local time_format='%D{%H:%M:%S}'
|
|
|
|
local time_format="%D{%H:%M:%S}"
|
|
|
|
if [[ -n $POWERLEVEL9K_TIME_FORMAT ]]; then
|
|
|
|
if [[ -n "$POWERLEVEL9K_TIME_FORMAT" ]]; then
|
|
|
|
time_format=$POWERLEVEL9K_TIME_FORMAT
|
|
|
|
time_format="$POWERLEVEL9K_TIME_FORMAT"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
$1_prompt_segment $0 $DEFAULT_COLOR_INVERTED $DEFAULT_COLOR $time_format
|
|
|
|
$1_prompt_segment "$0" "$DEFAULT_COLOR_INVERTED" "$DEFAULT_COLOR" "$time_format"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Virtualenv: current working virtualenv
|
|
|
|
# Virtualenv: current working virtualenv
|
|
|
@ -541,8 +540,8 @@ prompt_time() {
|
|
|
|
# https://virtualenv.pypa.io/en/latest/
|
|
|
|
# https://virtualenv.pypa.io/en/latest/
|
|
|
|
prompt_virtualenv() {
|
|
|
|
prompt_virtualenv() {
|
|
|
|
local virtualenv_path="$VIRTUAL_ENV"
|
|
|
|
local virtualenv_path="$VIRTUAL_ENV"
|
|
|
|
if [[ -n $virtualenv_path && -n $VIRTUAL_ENV_DISABLE_PROMPT ]]; then
|
|
|
|
if [[ -n "$virtualenv_path" && -n "$VIRTUAL_ENV_DISABLE_PROMPT" ]]; then
|
|
|
|
$1_prompt_segment $0 blue $DEFAULT_COLOR "(`basename $virtualenv_path`)"
|
|
|
|
$1_prompt_segment "$0" "blue" "$DEFAULT_COLOR" "(`basename $virtualenv_path`)"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -552,7 +551,7 @@ prompt_virtualenv() {
|
|
|
|
|
|
|
|
|
|
|
|
# Main prompt
|
|
|
|
# Main prompt
|
|
|
|
build_left_prompt() {
|
|
|
|
build_left_prompt() {
|
|
|
|
if [[ ${#POWERLEVEL9K_LEFT_PROMPT_ELEMENTS} == 0 ]]; then
|
|
|
|
if [[ "${#POWERLEVEL9K_LEFT_PROMPT_ELEMENTS}" == 0 ]]; then
|
|
|
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir rbenv vcs)
|
|
|
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir rbenv vcs)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
@ -567,7 +566,7 @@ build_left_prompt() {
|
|
|
|
build_right_prompt() {
|
|
|
|
build_right_prompt() {
|
|
|
|
RETVAL=$?
|
|
|
|
RETVAL=$?
|
|
|
|
|
|
|
|
|
|
|
|
if [[ ${#POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS} == 0 ]]; then
|
|
|
|
if [[ "${#POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS}" == 0 ]]; then
|
|
|
|
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(longstatus history time)
|
|
|
|
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(longstatus history time)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
@ -576,26 +575,43 @@ build_right_prompt() {
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
precmd() {
|
|
|
|
prompt_powerlevel9k_precmd() {
|
|
|
|
vcs_info
|
|
|
|
vcs_info
|
|
|
|
|
|
|
|
|
|
|
|
# Add a static hook to examine staged/unstaged changes.
|
|
|
|
# Add a static hook to examine staged/unstaged changes.
|
|
|
|
vcs_info_hookadd set-message vcs-detect-changes
|
|
|
|
vcs_info_hookadd set-message vcs-detect-changes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if [[ "$POWERLEVEL9K_PROMPT_ON_NEWLINE" == true ]]; then
|
|
|
|
powerlevel9k_init() {
|
|
|
|
PROMPT='╭─%{%f%b%k%}$(build_left_prompt)
|
|
|
|
setopt LOCAL_OPTIONS
|
|
|
|
╰─ '
|
|
|
|
unsetopt XTRACE KSH_ARRAYS
|
|
|
|
# The right prompt should be on the same line as the first line of the left
|
|
|
|
prompt_opts=(cr percent subst)
|
|
|
|
# prompt. To do so, there is just a quite ugly workaround: Before zsh draws
|
|
|
|
|
|
|
|
# the RPROMPT, we advise it, to go one line up. At the end of RPROMPT, we
|
|
|
|
# initialize colors
|
|
|
|
# advise it to go one line down. See:
|
|
|
|
autoload -U colors && colors
|
|
|
|
# http://superuser.com/questions/357107/zsh-right-justify-in-ps1
|
|
|
|
|
|
|
|
RPROMPT_PREFIX='%{'$'\e[1A''%}' # one line up
|
|
|
|
# initialize VCS
|
|
|
|
RPROMPT_SUFFIX='%{'$'\e[1B''%}' # one line down
|
|
|
|
autoload -Uz add-zsh-hook
|
|
|
|
else
|
|
|
|
|
|
|
|
PROMPT='%{%f%b%k%}$(build_left_prompt)'
|
|
|
|
add-zsh-hook precmd prompt_powerlevel9k_precmd
|
|
|
|
RPROMPT_PREFIX=''
|
|
|
|
|
|
|
|
RPROMPT_SUFFIX=''
|
|
|
|
if [[ "$POWERLEVEL9K_PROMPT_ON_NEWLINE" == true ]]; then
|
|
|
|
fi
|
|
|
|
PROMPT="╭─%{%f%b%k%}"'$(build_left_prompt)'"
|
|
|
|
RPROMPT=$RPROMPT_PREFIX'%{%f%b%k%}$(build_right_prompt)%{$reset_color%}'$RPROMPT_SUFFIX
|
|
|
|
╰─ "
|
|
|
|
|
|
|
|
# The right prompt should be on the same line as the first line of the left
|
|
|
|
|
|
|
|
# prompt. To do so, there is just a quite ugly workaround: Before zsh draws
|
|
|
|
|
|
|
|
# the RPROMPT, we advise it, to go one line up. At the end of RPROMPT, we
|
|
|
|
|
|
|
|
# advise it to go one line down. See:
|
|
|
|
|
|
|
|
# http://superuser.com/questions/357107/zsh-right-justify-in-ps1
|
|
|
|
|
|
|
|
RPROMPT_PREFIX='%{'$'\e[1A''%}' # one line up
|
|
|
|
|
|
|
|
RPROMPT_SUFFIX='%{'$'\e[1B''%}' # one line down
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
PROMPT="%{%f%b%k%}"'$(build_left_prompt)'
|
|
|
|
|
|
|
|
RPROMPT_PREFIX=''
|
|
|
|
|
|
|
|
RPROMPT_SUFFIX=''
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
RPROMPT=$RPROMPT_PREFIX"%{%f%b%k%}"'$(build_right_prompt)'"%{$reset_color%}"$RPROMPT_SUFFIX
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
powerlevel9k_init "$@"
|
|
|
|