git prompt: Interpret values of "1", "yes" or "true" as true for bools instead of relying on defined-or-not (#9274)

This allows explicitly turning these settings off by setting the variable to e.g. 0.

See #7120
This commit is contained in:
Fabian Boehm 2022-10-21 20:22:20 +02:00 committed by GitHub
parent f3372635fa
commit 8c362c89b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 21 deletions

View file

@ -26,14 +26,16 @@ The ``fish_git_prompt`` function displays information about the current git repo
There are numerous customization options, which can be controlled with git options or fish variables. git options, where available, take precedence over the fish variable with the same function. git options can be set on a per-repository or global basis. git options can be set with the ``git config`` command, while fish variables can be set as usual with the :doc:`set <set>` command. There are numerous customization options, which can be controlled with git options or fish variables. git options, where available, take precedence over the fish variable with the same function. git options can be set on a per-repository or global basis. git options can be set with the ``git config`` command, while fish variables can be set as usual with the :doc:`set <set>` command.
- ``$__fish_git_prompt_show_informative_status`` or the git option ``bash.showInformativeStatus`` can be set to enable the "informative" display, which will show a large amount of information - the number of dirty files, unpushed/unpulled commits, and more. Boolean options (those which enable or disable something) understand "1", "yes" or "true" to mean true and every other value to mean false.
- ``$__fish_git_prompt_show_informative_status`` or the git option ``bash.showInformativeStatus`` can be set to 1, true or yes to enable the "informative" display, which will show a large amount of information - the number of dirty files, unpushed/unpulled commits, and more.
In large repositories, this can take a lot of time, so you may wish to disable it in these repositories with ``git config --local bash.showInformativeStatus false``. It also changes the characters the prompt uses to less plain ones (```` instead of ``*`` for the dirty state for example) , and if you are only interested in that, set ``$__fish_git_prompt_use_informative_chars`` instead. In large repositories, this can take a lot of time, so you may wish to disable it in these repositories with ``git config --local bash.showInformativeStatus false``. It also changes the characters the prompt uses to less plain ones (```` instead of ``*`` for the dirty state for example) , and if you are only interested in that, set ``$__fish_git_prompt_use_informative_chars`` instead.
Because counting untracked files requires a lot of time, the number of untracked files is only shown if enabled via ``$__fish_git_prompt_showuntrackedfiles`` or the git option ``bash.showUntrackedFiles``. Because counting untracked files requires a lot of time, the number of untracked files is only shown if enabled via ``$__fish_git_prompt_showuntrackedfiles`` or the git option ``bash.showUntrackedFiles``.
- ``$__fish_git_prompt_showdirtystate`` or the git option ``bash.showDirtyState`` can be set to show if the repository is "dirty", i.e. has uncommitted changes. - ``$__fish_git_prompt_showdirtystate`` or the git option ``bash.showDirtyState`` can be set to 1, true or yes to show if the repository is "dirty", i.e. has uncommitted changes.
- ``$__fish_git_prompt_showuntrackedfiles`` or the git option ``bash.showUntrackedFiles`` can be set to show if the repository has untracked files (that aren't ignored). - ``$__fish_git_prompt_showuntrackedfiles`` or the git option ``bash.showUntrackedFiles`` can be set to 1, true or yes to show if the repository has untracked files (that aren't ignored).
- ``$__fish_git_prompt_showupstream`` can be set to a list of values to determine how changes between HEAD and upstream are shown: - ``$__fish_git_prompt_showupstream`` can be set to a list of values to determine how changes between HEAD and upstream are shown:
@ -52,7 +54,7 @@ There are numerous customization options, which can be controlled with git optio
``none`` ``none``
disables (useful with informative status) disables (useful with informative status)
- ``$__fish_git_prompt_showstashstate`` can be set to display the state of the stash. - ``$__fish_git_prompt_showstashstate`` can be set to 1, true or yes to display the state of the stash.
- ``$__fish_git_prompt_shorten_branch_len`` can be set to the number of characters that the branch name will be shortened to. - ``$__fish_git_prompt_shorten_branch_len`` can be set to the number of characters that the branch name will be shortened to.
@ -69,7 +71,7 @@ There are numerous customization options, which can be controlled with git optio
If none of these apply, the commit SHA shortened to 8 characters is used. If none of these apply, the commit SHA shortened to 8 characters is used.
- ``$__fish_git_prompt_showcolorhints`` can be set to enable coloring for the branch name and status symbols. - ``$__fish_git_prompt_showcolorhints`` can be set to 1, true or yes to enable coloring for the branch name and status symbols.
A number of variables set characters and color used as indicators. Many of these have a different default if used with informative status enabled, or ``$__fish_git_prompt_use_informative_chars`` set. The usual default is given first, then the informative default (if it is different). If no default for the colors is given, they default to ``$__fish_git_prompt_color``. A number of variables set characters and color used as indicators. Many of these have a different default if used with informative status enabled, or ``$__fish_git_prompt_use_informative_chars`` set. The usual default is given first, then the informative default (if it is different). If no default for the colors is given, they default to ``$__fish_git_prompt_color``.

View file

@ -18,7 +18,7 @@ function __fish_git_prompt_show_upstream --description "Helper function for fish
set -l name set -l name
# Default to informative if __fish_git_prompt_show_informative_status is set # Default to informative if __fish_git_prompt_show_informative_status is set
if set -q __fish_git_prompt_show_informative_status if contains -- "$__fish_git_prompt_show_informative_status" yes true 1
set informative 1 set informative 1
end end
@ -230,14 +230,16 @@ function fish_git_prompt --description "Prompt function for Git"
end end
# If we don't print these, there is no need to compute them. Note: For now, staged and dirty are coupled. # If we don't print these, there is no need to compute them. Note: For now, staged and dirty are coupled.
if not set -q dirty[1] && set -q __fish_git_prompt_showdirtystate if not set -q dirty[1]
set dirty true contains -- "$__fish_git_prompt_showdirtystate" yes true 1
and set dirty true
end end
contains dirtystate $__fish_git_prompt_status_order || contains stagedstate $__fish_git_prompt_status_order contains dirtystate $__fish_git_prompt_status_order || contains stagedstate $__fish_git_prompt_status_order
or set dirty false or set dirty false
if not set -q untracked[1] && set -q __fish_git_prompt_showuntrackedfiles if not set -q untracked[1]
set untracked true contains -- "$__fish_git_prompt_showuntrackedfiles" yes true 1
and set untracked true
end end
contains untrackedfiles $__fish_git_prompt_status_order contains untrackedfiles $__fish_git_prompt_status_order
or set untracked false or set untracked false
@ -249,7 +251,7 @@ function fish_git_prompt --description "Prompt function for Git"
# This is to allow overrides for the repository. # This is to allow overrides for the repository.
if test "$informative" = true if test "$informative" = true
or begin or begin
set -q __fish_git_prompt_show_informative_status contains -- "$__fish_git_prompt_show_informative_status" yes true 1
and test "$dirty" != false and test "$dirty" != false
end end
set informative_status (untracked=$untracked __fish_git_prompt_informative_status $git_dir) set informative_status (untracked=$untracked __fish_git_prompt_informative_status $git_dir)
@ -281,21 +283,21 @@ function fish_git_prompt --description "Prompt function for Git"
and set untrackedfiles (string match -qr '\?\?' -- $stat; and echo 1) and set untrackedfiles (string match -qr '\?\?' -- $stat; and echo 1)
end end
if set -q __fish_git_prompt_showstashstate if contains -- "$__fish_git_prompt_showstashstate" yes true 1
and test -r $git_dir/logs/refs/stash and test -r $git_dir/logs/refs/stash
set stashstate 1 set stashstate 1
end end
end end
if set -q __fish_git_prompt_showupstream if contains -- "$__fish_git_prompt_showupstream" yes true 1
or set -q __fish_git_prompt_show_informative_status or contains -- "$__fish_git_prompt_show_informative_status" yes true 1
set p (__fish_git_prompt_show_upstream) set p (__fish_git_prompt_show_upstream)
end end
end end
set -l branch_color $___fish_git_prompt_color_branch set -l branch_color $___fish_git_prompt_color_branch
set -l branch_done $___fish_git_prompt_color_branch_done set -l branch_done $___fish_git_prompt_color_branch_done
if set -q __fish_git_prompt_showcolorhints if contains -- "$__fish_git_prompt_showcolorhints" yes true 1
if test $detached = yes if test $detached = yes
set branch_color $___fish_git_prompt_color_branch_detached set branch_color $___fish_git_prompt_color_branch_detached
set branch_done $___fish_git_prompt_color_branch_detached_done set branch_done $___fish_git_prompt_color_branch_detached_done
@ -332,7 +334,7 @@ function fish_git_prompt --description "Prompt function for Git"
if test -n "$b" if test -n "$b"
set b "$branch_color$b$branch_done" set b "$branch_color$b$branch_done"
if test -z "$dirtystate$untrackedfiles$stagedstate"; and test -n "$___fish_git_prompt_char_cleanstate" if test -z "$dirtystate$untrackedfiles$stagedstate"; and test -n "$___fish_git_prompt_char_cleanstate"
and not set -q __fish_git_prompt_show_informative_status and not contains -- "$__fish_git_prompt_show_informative_status" yes true 1
set b "$b$___fish_git_prompt_color_cleanstate$___fish_git_prompt_char_cleanstate$___fish_git_prompt_color_cleanstate_done" set b "$b$___fish_git_prompt_color_cleanstate$___fish_git_prompt_char_cleanstate$___fish_git_prompt_color_cleanstate_done"
end end
end end
@ -363,7 +365,7 @@ end
function __fish_git_prompt_informative_status function __fish_git_prompt_informative_status
set -l stashstate 0 set -l stashstate 0
set -l stashfile "$argv[1]/logs/refs/stash" set -l stashfile "$argv[1]/logs/refs/stash"
if set -q __fish_git_prompt_showstashstate; and test -e "$stashfile" if contains -- "$__fish_git_prompt_showstashstate" yes true 1; and test -e "$stashfile"
set stashstate (count < $stashfile) set stashstate (count < $stashfile)
end end
@ -518,8 +520,8 @@ function __fish_git_prompt_set_char
if set -q argv[3] if set -q argv[3]
and begin and begin
set -q __fish_git_prompt_show_informative_status contains -- "$__fish_git_prompt_show_informative_status" yes true 1
or set -q __fish_git_prompt_use_informative_chars or contains -- "$__fish_git_prompt_use_informative_chars" yes true 1
end end
set char $argv[3] set char $argv[3]
end end
@ -534,7 +536,7 @@ end
function __fish_git_prompt_validate_chars --description "fish_git_prompt helper, checks char variables" function __fish_git_prompt_validate_chars --description "fish_git_prompt helper, checks char variables"
# cleanstate is only defined with actual informative status. # cleanstate is only defined with actual informative status.
set -q __fish_git_prompt_show_informative_status contains -- "$__fish_git_prompt_show_informative_status" yes true 1
and __fish_git_prompt_set_char __fish_git_prompt_char_cleanstate '✔' and __fish_git_prompt_set_char __fish_git_prompt_char_cleanstate '✔'
or __fish_git_prompt_set_char __fish_git_prompt_char_cleanstate '' or __fish_git_prompt_set_char __fish_git_prompt_char_cleanstate ''
@ -598,7 +600,7 @@ function __fish_git_prompt_validate_colors --description "fish_git_prompt helper
__fish_git_prompt_set_color __fish_git_prompt_color_upstream __fish_git_prompt_set_color __fish_git_prompt_color_upstream
# Colors with defaults with showcolorhints # Colors with defaults with showcolorhints
if set -q __fish_git_prompt_showcolorhints if contains -- "$__fish_git_prompt_showcolorhints" yes true 1
__fish_git_prompt_set_color __fish_git_prompt_color_flags (set_color --bold blue) __fish_git_prompt_set_color __fish_git_prompt_color_flags (set_color --bold blue)
__fish_git_prompt_set_color __fish_git_prompt_color_branch (set_color green) __fish_git_prompt_set_color __fish_git_prompt_color_branch (set_color green)
__fish_git_prompt_set_color __fish_git_prompt_color_dirtystate (set_color red) __fish_git_prompt_set_color __fish_git_prompt_color_dirtystate (set_color red)

View file

@ -61,6 +61,12 @@ fish_git_prompt
echo echo
#CHECK: (newbranch|) #CHECK: (newbranch|)
set -g __fish_git_prompt_show_informative_status 0
fish_git_prompt
echo # the git prompt doesn't print a newline
#CHECK: (newbranch)
set -g __fish_git_prompt_show_informative_status 1
# Informative mode only shows untracked files if explicitly told. # Informative mode only shows untracked files if explicitly told.
set -g __fish_git_prompt_showuntrackedfiles 1 set -g __fish_git_prompt_showuntrackedfiles 1
fish_git_prompt fish_git_prompt
@ -80,12 +86,22 @@ git add foo
fish_git_prompt fish_git_prompt
echo echo
#CHECK: (newbranch +) #CHECK: (newbranch +)
set -g __fish_git_prompt_showdirtystate 0
fish_git_prompt
echo
#CHECK: (newbranch)
set -g __fish_git_prompt_showdirtystate 1
set -g __fish_git_prompt_showuntrackedfiles 1 set -g __fish_git_prompt_showuntrackedfiles 1
touch bananan touch bananan
fish_git_prompt fish_git_prompt
echo echo
#CHECK: (newbranch +%) #CHECK: (newbranch +%)
set -g __fish_git_prompt_showuntrackedfiles 0
fish_git_prompt
echo
#CHECK: (newbranch +)
set -g __fish_git_prompt_showuntrackedfiles 1
set -g __fish_git_prompt_status_order untrackedfiles stagedstate set -g __fish_git_prompt_status_order untrackedfiles stagedstate
fish_git_prompt fish_git_prompt