Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
ef8e3a67
Commit
ef8e3a67
authored
Jan 31, 2013
by
Matt Guindin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[agnoster] modifying theme to show dot for dirty files and plus for staged files in git repos
parent
615e41b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
agnoster.zsh-theme
themes/agnoster.zsh-theme
+13
-2
No files found.
themes/agnoster.zsh-theme
View file @
ef8e3a67
...
@@ -71,7 +71,6 @@ prompt_context() {
...
@@ -71,7 +71,6 @@ prompt_context() {
prompt_git
()
{
prompt_git
()
{
local
ref dirty
local
ref dirty
if
$(
git rev-parse
--is-inside-work-tree
>
/dev/null 2>&1
)
;
then
if
$(
git rev-parse
--is-inside-work-tree
>
/dev/null 2>&1
)
;
then
ZSH_THEME_GIT_PROMPT_DIRTY
=
'±'
dirty
=
$(
parse_git_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
)
"
ref
=
$(
git symbolic-ref HEAD 2> /dev/null
)
||
ref
=
"➦
$(
git show-ref
--head
-s
--abbrev
|head
-n1
2> /dev/null
)
"
if
[[
-n
$dirty
]]
;
then
if
[[
-n
$dirty
]]
;
then
...
@@ -79,7 +78,19 @@ prompt_git() {
...
@@ -79,7 +78,19 @@ prompt_git() {
else
else
prompt_segment green black
prompt_segment green black
fi
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
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