mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 08:00:06 +00:00
Merge pull request #211 from Falkor/feature/better_dirty_check
VCS dirty check even in subdirs
This commit is contained in:
commit
2d196fa12f
1 changed files with 5 additions and 1 deletions
|
@ -7,8 +7,12 @@
|
|||
################################################################
|
||||
|
||||
function +vi-git-untracked() {
|
||||
local FLAGS
|
||||
FLAGS=('--porcelain')
|
||||
# TODO: check git >= 1.7.2 - see function git_compare_version()
|
||||
FLAGS+='--ignore-submodules=dirty'
|
||||
if [[ $(git rev-parse --is-inside-work-tree 2> /dev/null) == 'true' && \
|
||||
-n $(git ls-files --others --exclude-standard | sed q) ]]; then
|
||||
-n $(git status ${FLAGS} | grep '^??' 2> /dev/null | tail -n1) ]]; then
|
||||
hook_com[unstaged]+=" %F{$POWERLEVEL9K_VCS_FOREGROUND}$(print_icon 'VCS_UNTRACKED_ICON')%f"
|
||||
VCS_WORKDIR_HALF_DIRTY=true
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue