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
Oh My Zsh
Commits
d6a36b17
Commit
d6a36b17
authored
Apr 23, 2013
by
Robby Russell
Browse files
Merge pull request #1575 from mguindin/agnoster-change
[agnoster-theme] modifying theme for dirty/staged files
parents
b61555d7
ef8e3a67
Changes
1
Hide whitespace changes
Inline
Side-by-side
themes/agnoster.zsh-theme
View file @
d6a36b17
...
...
@@ -71,7 +71,6 @@ prompt_context() {
prompt_git
()
{
local
ref dirty
if
$(
git rev-parse
--is-inside-work-tree
>
/dev/null 2>&1
)
;
then
ZSH_THEME_GIT_PROMPT_DIRTY
=
'±'
dirty
=
$(
parse_git_dirty
)
ref
=
$(
git symbolic-ref HEAD 2> /dev/null
)
||
ref
=
"➦
$(
git show-ref
--head
-s
--abbrev
|head
-n1
2> /dev/null
)
"
if
[[
-n
$dirty
]]
;
then
...
...
@@ -79,7 +78,19 @@ prompt_git() {
else
prompt_segment green black
fi
echo
-n
"
${
ref
/refs\/heads\//⭠
}
$dirty
"
setopt promptsubst
autoload
-Uz
vcs_info
zstyle
':vcs_info:*'
enable
git
zstyle
':vcs_info:*'
get-revision
true
zstyle
':vcs_info:*'
check-for-changes
true
zstyle
':vcs_info:*'
stagedstr
'✚'
zstyle
':vcs_info:git:*'
unstagedstr
'●'
zstyle
':vcs_info:*'
formats
' %u%c'
zstyle
':vcs_info:*'
actionformats
'%u%c'
vcs_info
echo
-n
"
${
ref
/refs\/heads\//⭠
}${
vcs_info_msg_0_
}
"
fi
}
...
...
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