Remove unnecessary checks in steeef
Many programs affect repositories, not just the command line versions.
This commit is contained in:
parent
95faf814b5
commit
1c136faf73
@ -16,29 +16,16 @@ function virtualenv_info {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function prompt_steeef_precmd {
|
function prompt_steeef_precmd {
|
||||||
if [[ -n "$__PROMPT_STEEEF_VCS_UPDATE" ]] ; then
|
|
||||||
# Check for untracked files or updated submodules since vcs_info doesn't.
|
# Check for untracked files or updated submodules since vcs_info doesn't.
|
||||||
if [[ ! -z $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then
|
if [[ -n $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then
|
||||||
__PROMPT_STEEEF_VCS_UPDATE=1
|
fmt_branch="(${_prompt_steeef_colors[1]}%b%f%u%c${_prompt_steeef_colors[4]}●%f)"
|
||||||
fmt_branch="(${__PROMPT_STEEEF_COLORS[1]}%b%f%u%c${__PROMPT_STEEEF_COLORS[4]}●%f)"
|
|
||||||
else
|
else
|
||||||
fmt_branch="(${__PROMPT_STEEEF_COLORS[1]}%b%f%u%c)"
|
fmt_branch="(${_prompt_steeef_colors[1]}%b%f%u%c)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
zstyle ':vcs_info:*:prompt:*' formats "${fmt_branch}"
|
zstyle ':vcs_info:*:prompt:*' formats "${fmt_branch}"
|
||||||
|
|
||||||
vcs_info 'prompt'
|
vcs_info 'prompt'
|
||||||
__PROMPT_STEEEF_VCS_UPDATE=''
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function prompt_steeef_preexec {
|
|
||||||
if [[ "${2[(w)1]}" == (git|svn) ]]; then
|
|
||||||
__PROMPT_STEEEF_VCS_UPDATE=1
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function prompt_steeef_chpwd {
|
|
||||||
__PROMPT_STEEEF_VCS_UPDATE=1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function prompt_steeef_setup {
|
function prompt_steeef_setup {
|
||||||
@ -46,18 +33,16 @@ function prompt_steeef_setup {
|
|||||||
unsetopt XTRACE KSH_ARRAYS
|
unsetopt XTRACE KSH_ARRAYS
|
||||||
prompt_opts=(cr percent subst)
|
prompt_opts=(cr percent subst)
|
||||||
|
|
||||||
|
# Load required functions.
|
||||||
autoload -Uz add-zsh-hook
|
autoload -Uz add-zsh-hook
|
||||||
autoload -Uz vcs_info
|
autoload -Uz vcs_info
|
||||||
|
|
||||||
|
# Add hook for calling vcs_info before each command.
|
||||||
add-zsh-hook precmd prompt_steeef_precmd
|
add-zsh-hook precmd prompt_steeef_precmd
|
||||||
add-zsh-hook preexec prompt_steeef_preexec
|
|
||||||
add-zsh-hook chpwd prompt_steeef_chpwd
|
|
||||||
|
|
||||||
__PROMPT_STEEEF_VCS_UPDATE=1
|
|
||||||
|
|
||||||
# Use extended color pallete if available.
|
# Use extended color pallete if available.
|
||||||
if [[ $TERM = *256color* || $TERM = *rxvt* ]]; then
|
if [[ $TERM = *256color* || $TERM = *rxvt* ]]; then
|
||||||
__PROMPT_STEEEF_COLORS=(
|
_prompt_steeef_colors=(
|
||||||
"%F{81}" # turquoise
|
"%F{81}" # turquoise
|
||||||
"%F{166}" # orange
|
"%F{166}" # orange
|
||||||
"%F{135}" # purple
|
"%F{135}" # purple
|
||||||
@ -65,7 +50,7 @@ function prompt_steeef_setup {
|
|||||||
"%F{118}" # limegreen
|
"%F{118}" # limegreen
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
__PROMPT_STEEEF_COLORS=(
|
_prompt_steeef_colors=(
|
||||||
"%F{cyan}"
|
"%F{cyan}"
|
||||||
"%F{yellow}"
|
"%F{yellow}"
|
||||||
"%F{magenta}"
|
"%F{magenta}"
|
||||||
@ -88,10 +73,10 @@ function prompt_steeef_setup {
|
|||||||
# %a - action (e.g. rebase-i)
|
# %a - action (e.g. rebase-i)
|
||||||
# %R - repository path
|
# %R - repository path
|
||||||
# %S - path in the repository
|
# %S - path in the repository
|
||||||
local fmt_branch="(${__PROMPT_STEEEF_COLORS[1]}%b%f%u%c)"
|
local fmt_branch="(${_prompt_steeef_colors[1]}%b%f%u%c)"
|
||||||
local fmt_action="(${__PROMPT_STEEEF_COLORS[5]}%a%f)"
|
local fmt_action="(${_prompt_steeef_colors[5]}%a%f)"
|
||||||
local fmt_unstaged="${__PROMPT_STEEEF_COLORS[2]}●%f"
|
local fmt_unstaged="${_prompt_steeef_colors[2]}●%f"
|
||||||
local fmt_staged="${__PROMPT_STEEEF_COLORS[5]}●%f"
|
local fmt_staged="${_prompt_steeef_colors[5]}●%f"
|
||||||
|
|
||||||
zstyle ':vcs_info:*:prompt:*' unstagedstr "${fmt_unstaged}"
|
zstyle ':vcs_info:*:prompt:*' unstagedstr "${fmt_unstaged}"
|
||||||
zstyle ':vcs_info:*:prompt:*' stagedstr "${fmt_staged}"
|
zstyle ':vcs_info:*:prompt:*' stagedstr "${fmt_staged}"
|
||||||
@ -100,7 +85,7 @@ function prompt_steeef_setup {
|
|||||||
zstyle ':vcs_info:*:prompt:*' nvcsformats ""
|
zstyle ':vcs_info:*:prompt:*' nvcsformats ""
|
||||||
|
|
||||||
PROMPT="
|
PROMPT="
|
||||||
${__PROMPT_STEEEF_COLORS[3]}%n%f at ${__PROMPT_STEEEF_COLORS[2]}%m%f in ${__PROMPT_STEEEF_COLORS[5]}%~%f "'${vcs_info_msg_0_}'"
|
${_prompt_steeef_colors[3]}%n%f at ${_prompt_steeef_colors[2]}%m%f in ${_prompt_steeef_colors[5]}%~%f "'${vcs_info_msg_0_}'"
|
||||||
"'$(virtualenv_info)'"$ "
|
"'$(virtualenv_info)'"$ "
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user