mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 14:20:08 +00:00
Reduced unnecessary space in Fossil plugin prompt
The prior version was way too opinionated, adding space between each element of the prompt string, unlike common Git prompt strings. If the user wants more space, they can override our public variables to suit. The inverse argument doesn't hold: it's easy to add space to existing variables, but not as easy to remove it after the fact. As part of this, changed the branch name from red to blue (matching the preceding part of the prompt) so the red "X" added to indicate a dirty branch doesn't get lost in the branch name.
This commit is contained in:
parent
6d48309cd7
commit
656bb18799
1 changed files with 5 additions and 5 deletions
|
@ -1,16 +1,16 @@
|
||||||
_FOSSIL_PROMPT=""
|
_FOSSIL_PROMPT=""
|
||||||
|
|
||||||
# Prefix at the very beginning of the prompt, before the branch name
|
# Prefix at the very beginning of the prompt, before the branch name
|
||||||
ZSH_THEME_FOSSIL_PROMPT_PREFIX="%{$fg_bold[blue]%}fossil:(%{$fg_bold[red]%}"
|
ZSH_THEME_FOSSIL_PROMPT_PREFIX="%{$fg_bold[blue]%}fossil:("
|
||||||
|
|
||||||
# At the very end of the prompt
|
# At the very end of the prompt
|
||||||
ZSH_THEME_FOSSIL_PROMPT_SUFFIX="%{$fg_bold[blue]%})"
|
ZSH_THEME_FOSSIL_PROMPT_SUFFIX="%{$fg_bold[blue]%})"
|
||||||
|
|
||||||
# Text to display if the branch is dirty
|
# Text to display if the branch is dirty
|
||||||
ZSH_THEME_FOSSIL_PROMPT_DIRTY=" %{$fg_bold[red]%}✖"
|
ZSH_THEME_FOSSIL_PROMPT_DIRTY="%{$fg_bold[red]%}✖"
|
||||||
|
|
||||||
# Text to display if the branch is clean
|
# Text to display if the branch is clean
|
||||||
ZSH_THEME_FOSSIL_PROMPT_CLEAN=" %{$fg_bold[green]%}✔"
|
ZSH_THEME_FOSSIL_PROMPT_CLEAN="%{$fg_bold[green]%}✔"
|
||||||
|
|
||||||
function fossil_prompt_info() {
|
function fossil_prompt_info() {
|
||||||
local info=$(fossil branch 2>&1)
|
local info=$(fossil branch 2>&1)
|
||||||
|
@ -26,11 +26,11 @@ function fossil_prompt_info() {
|
||||||
dirty="$ZSH_THEME_FOSSIL_PROMPT_DIRTY"
|
dirty="$ZSH_THEME_FOSSIL_PROMPT_DIRTY"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
printf '%s %s %s %s %s' \
|
printf ' %s%s%s%s%s' \
|
||||||
"$ZSH_THEME_FOSSIL_PROMPT_PREFIX" \
|
"$ZSH_THEME_FOSSIL_PROMPT_PREFIX" \
|
||||||
"${branch:gs/%/%%}" \
|
"${branch:gs/%/%%}" \
|
||||||
"$ZSH_THEME_FOSSIL_PROMPT_SUFFIX" \
|
|
||||||
"$dirty" \
|
"$dirty" \
|
||||||
|
"$ZSH_THEME_FOSSIL_PROMPT_SUFFIX" \
|
||||||
"%{$reset_color%}"
|
"%{$reset_color%}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue