We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67b09d4 commit bde9801Copy full SHA for bde9801
zsh/.p10k.zsh
@@ -363,9 +363,10 @@
363
where=${where/#$P10K_BRANCH_SUBST_STRING/$P10K_BRANCH_SUBST_REPLACE}
364
fi
365
366
- # If local branch name or tag is at most 32 characters long, show it in full.
367
- # Otherwise show the first 12 … the last 12.
368
- (( $#where > 32 )) && where[13,-13]="…"
+ # NP- always show full branch name
+ # # If local branch name or tag is at most 32 characters long, show it in full.
+ # # Otherwise show the first 12 … the last 12.
369
+ # (( $#where > 32 )) && where[13,-13]="…"
370
res+="${clean}${where//\%/%%}" # escape %
371
372
# Show tracking branch name if it differs from local branch.
0 commit comments