Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
6ff53d17
Commit
6ff53d17
authored
Aug 01, 2015
by
Marc Cornellà
Browse files
Cleanup of git-prompt plugin file
parent
1d133ff1
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/git-prompt/git-prompt.plugin.zsh
View file @
6ff53d17
# ZSH Git Prompt Plugin from:
# http://github.com/olivierverdier/zsh-git-prompt
export
__GIT_PROMPT_DIR
=
${
0
:A:h
}
__GIT_PROMPT_DIR
=
"
${
0
:A:h
}
"
export
GIT_PROMPT_EXECUTABLE
=
${
GIT_PROMPT_USE_PYTHON
:-
"python"
}
# Initialize colors.
autoload
-U
colors
colors
# Allow for functions in the prompt.
setopt PROMPT_SUBST
autoload
-U
add-zsh-hook
add-zsh-hook chpwd chpwd_update_git_vars
add-zsh-hook preexec preexec_update_git_vars
add-zsh-hook precmd precmd_update_git_vars
## Hook function definitions
function
chpwd_update_git_vars
()
{
update_current_git_vars
}
## Function definitions
function
preexec_update_git_vars
()
{
case
"
$2
"
in
git
*
|
hub
*
|
gh
*
|
stg
*
)
...
...
@@ -34,21 +23,17 @@ function precmd_update_git_vars() {
fi
}
function
chpwd_update_git_vars
()
{
update_current_git_vars
}
chpwd_functions+
=(
chpwd_update_git_vars
)
precmd_functions+
=(
precmd_update_git_vars
)
preexec_functions+
=(
preexec_update_git_vars
)
## Function definitions
function
update_current_git_vars
()
{
unset
__CURRENT_GIT_STATUS
if
[[
"
$GIT_PROMPT_EXECUTABLE
"
==
"python"
]]
;
then
local
gitstatus
=
"
$__GIT_PROMPT_DIR
/gitstatus.py"
_GIT_STATUS
=
`
python
${
gitstatus
}
2>/dev/null
`
fi
if
[[
"
$GIT_PROMPT_EXECUTABLE
"
==
"haskell"
]]
;
then
local
gitstatus
=
"
$__GIT_PROMPT_DIR
/dist/build/gitstatus/gitstatus"
_GIT_STATUS
=
`
${
gitstatus
}
`
fi
_GIT_STATUS
=
$(
python
${
gitstatus
}
2>/dev/null
)
__CURRENT_GIT_STATUS
=(
"
${
(@s
:
:
)_GIT_STATUS
}
"
)
GIT_BRANCH
=
$__CURRENT_GIT_STATUS
[
1]
GIT_AHEAD
=
$__CURRENT_GIT_STATUS
[
2]
...
...
@@ -59,7 +44,6 @@ function update_current_git_vars() {
GIT_UNTRACKED
=
$__CURRENT_GIT_STATUS
[
7]
}
git_super_status
()
{
precmd_update_git_vars
if
[
-n
"
$__CURRENT_GIT_STATUS
"
]
;
then
...
...
@@ -91,7 +75,7 @@ git_super_status() {
fi
}
# Default values for the appearance of the prompt.
Configure at will.
# Default values for the appearance of the prompt.
ZSH_THEME_GIT_PROMPT_PREFIX
=
"("
ZSH_THEME_GIT_PROMPT_SUFFIX
=
")"
ZSH_THEME_GIT_PROMPT_SEPARATOR
=
"|"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment