2013-07-02 15:10:15 +00:00
|
|
|
# based off of the git-prompt script that ships with git
|
2012-06-20 21:04:43 +00:00
|
|
|
#
|
|
|
|
# Written by Kevin Ballard <kevin@sb.org>
|
2013-07-02 15:10:15 +00:00
|
|
|
# Updated by Brian Gernhardt <brian@gernhardtsoftware.com>
|
2012-06-20 21:04:43 +00:00
|
|
|
#
|
2013-07-02 15:10:15 +00:00
|
|
|
# This is heavily based off of the git-prompt.bash script that ships with
|
2012-06-20 21:04:43 +00:00
|
|
|
# git, which is Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>.
|
|
|
|
# The act of porting the code, along with any new code, are Copyright (C) 2012
|
|
|
|
# Kevin Ballard <kevin@sb.org>.
|
|
|
|
#
|
2013-07-02 15:10:15 +00:00
|
|
|
# By virtue of being based on the git-prompt.bash script, this script is
|
2012-06-20 21:04:43 +00:00
|
|
|
# distributed under the GNU General Public License, version 2.0.
|
|
|
|
#
|
|
|
|
# This script vends a function __fish_git_prompt which takes a format string,
|
|
|
|
# exactly how the bash script works. This can be used in your fish_prompt
|
|
|
|
# function.
|
|
|
|
#
|
|
|
|
# The behavior of __fish_git_prompt is very heavily based off of the bash
|
2013-07-02 15:10:15 +00:00
|
|
|
# script's __git_ps1 function. As such, usage and customization is very
|
2013-07-27 01:00:45 +00:00
|
|
|
# similar, although some extra features are provided in this script.
|
2013-07-02 15:10:15 +00:00
|
|
|
# Due to differences between bash and fish, the PROMPT_COMMAND style where
|
|
|
|
# passing two or three arguments causes the fucnction to set PS1 is not
|
2013-07-27 01:00:45 +00:00
|
|
|
# supported. More information on the additional features is found after the
|
|
|
|
# bash-compatable documentation.
|
2012-06-20 21:04:43 +00:00
|
|
|
#
|
|
|
|
# The argument to __fish_git_prompt will be displayed only if you are currently
|
2013-07-02 15:10:15 +00:00
|
|
|
# in a git repository. The %s token will be the name of the branch.
|
2012-06-20 21:04:43 +00:00
|
|
|
#
|
|
|
|
# In addition, if you set __fish_git_prompt_showdirtystate to a nonempty value,
|
|
|
|
# unstaged (*) and staged (+) changes will be shown next to the branch name.
|
|
|
|
# You can configure this per-repository with the bash.showDirtyState variable,
|
|
|
|
# which defaults to true once __fish_git_prompt_showdirtystate is enabled. The
|
|
|
|
# choice to leave the variable as 'bash' instead of renaming to 'fish' is done
|
|
|
|
# to preserve compatibility with existing configured repositories.
|
|
|
|
#
|
|
|
|
# You can also see if currently something is stashed, by setting
|
|
|
|
# __fish_git_prompt_showstashstate to a nonempty value. If something is
|
|
|
|
# stashed, then a '$' will be shown next to the branch name.
|
|
|
|
#
|
2013-04-01 17:52:27 +00:00
|
|
|
# If you would like to see if there are untracked files, then you can set
|
|
|
|
# __fish_git_prompt_showuntrackedfiles to a nonempty value. If there are
|
2013-07-03 04:41:20 +00:00
|
|
|
# untracked files, then a '%' will be shown next to the branch name. Once you
|
|
|
|
# have set __fish_git_prompt_showuntrackedfiles, you can override it on a
|
|
|
|
# per-repository basis by setting the bash.showUntrackedFiles config variable.
|
|
|
|
# As before, this variable remains named 'bash' to preserve compatibility.
|
2012-06-20 21:04:43 +00:00
|
|
|
#
|
|
|
|
# If you would like to see the difference between HEAD and its upstream, set
|
|
|
|
# __fish_git_prompt_showupstream to 'auto'. A "<" indicates you are behind, ">"
|
2013-07-02 15:10:15 +00:00
|
|
|
# indicates you are ahead, "<>" indicates you have diverged and "=" indicates
|
|
|
|
# that there is no difference. You can further control behavior by setting
|
|
|
|
# __fish_git_prompt_showupstream to a space-separated list of values:
|
|
|
|
#
|
2013-07-27 01:00:45 +00:00
|
|
|
# verbose show number of commits ahead/behind (+/-) upstream
|
|
|
|
# informative similar to verbose, but shows nothing when equal (fish only)
|
2012-06-20 21:04:43 +00:00
|
|
|
# legacy don't use the '--count' option available in recent versions
|
|
|
|
# of git-rev-list
|
|
|
|
# git always compare HEAD to @{upstream}
|
|
|
|
# svn always compare HEAD to your SVN upstream
|
2013-07-27 15:04:54 +00:00
|
|
|
# none disables (fish only, useful with show_informative_status)
|
2013-07-02 15:10:15 +00:00
|
|
|
#
|
2012-06-20 21:04:43 +00:00
|
|
|
# By default, __fish_git_prompt will compare HEAD to your SVN upstream if it
|
|
|
|
# can find one, or @{upstream} otherwise. Once you have set
|
|
|
|
# __fish_git_prompt_showupstream, you can override it on a per-repository basis
|
|
|
|
# by setting the bash.showUpstream config variable. As before, this variable
|
|
|
|
# remains named 'bash' to preserve compatibility.
|
|
|
|
#
|
2013-07-02 15:10:15 +00:00
|
|
|
# If you would like to see more information about the identity of commits
|
|
|
|
# checked out as a detached HEAD, set __fish_git_prompt_describe_style to
|
|
|
|
# one of the following values:
|
|
|
|
#
|
|
|
|
# contains relative to newer annotated tag (v1.6.3.2~35)
|
|
|
|
# branch relative to newer tag or branch (master~4)
|
|
|
|
# describe relative to older annotated tag (v1.6.3.1-13-gdd42c2f)
|
|
|
|
# default exactly matching tag
|
|
|
|
#
|
2013-07-27 02:00:38 +00:00
|
|
|
# If you would like a colored hint about the current dirty state, set
|
|
|
|
# __fish_git_prompt_showcolorhints to a nonempty value. The default colors are
|
|
|
|
# based on the colored output of "git status -sb"
|
2013-07-27 01:00:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
# __fish_git_prompt includes some additional features on top of the
|
|
|
|
# above-documented bash-compatible features:
|
2013-07-27 02:00:38 +00:00
|
|
|
#
|
2013-07-27 01:00:45 +00:00
|
|
|
#
|
|
|
|
# An "informative git prompt" mode similar to the scripts for bash and zsh
|
|
|
|
# can be activated by setting __fish_git_prompt_show_informative_status
|
|
|
|
# This works more like the "informative git prompt" scripts for bash and zsh,
|
2013-07-27 15:08:33 +00:00
|
|
|
# giving prompts like (master↑1↓2|●3✖4✚5…6) where master is the current branch,
|
2013-07-27 15:04:54 +00:00
|
|
|
# you have 1 commit your upstream doesn't and it has 2 you don't, and you have
|
|
|
|
# 3 staged, 4 unmerged, 5 dirty, and 6 untracked files. If you have no
|
2013-07-27 15:08:33 +00:00
|
|
|
# changes, it displays (master|✔).
|
|
|
|
#
|
|
|
|
# Setting __fish_git_prompt_show_informative_status changes several defaults.
|
|
|
|
# The default mode for __fish_git_prompt_showupstream changes to informative
|
|
|
|
# and the following characters have their defaults changed. (The characters
|
|
|
|
# and colors can still be customized as described below.)
|
|
|
|
#
|
|
|
|
# upstream_prefix ()
|
|
|
|
# upstream_ahead (↑)
|
|
|
|
# upstream_behind (↓)
|
2013-07-27 15:12:34 +00:00
|
|
|
# stateseparator (|)
|
2013-07-27 15:08:33 +00:00
|
|
|
# dirtystate (✚)
|
|
|
|
# invalidstate (✖)
|
|
|
|
# stagedstate (●)
|
|
|
|
# untrackedfiles (…)
|
|
|
|
# cleanstate (✔)
|
2013-07-27 01:00:45 +00:00
|
|
|
#
|
2012-06-20 21:04:43 +00:00
|
|
|
#
|
2013-07-02 16:40:45 +00:00
|
|
|
# The color for each component of the prompt can specified using
|
|
|
|
# __fish_git_prompt_color_<name>, where <name> is one of the following and the
|
|
|
|
# values are specified as arguments to `set_color`. The variable
|
2012-06-21 18:14:01 +00:00
|
|
|
# __fish_git_prompt_color is used for any component that does not have an
|
2013-07-02 16:40:45 +00:00
|
|
|
# individual color set.
|
|
|
|
#
|
|
|
|
# prefix Anything before %s in the format string
|
|
|
|
# suffix Anything after %s in the format string
|
|
|
|
# bare Marker for a bare repository
|
|
|
|
# merging Current operation (|MERGING, |REBASE, etc.)
|
|
|
|
# branch Branch name
|
2013-07-27 02:00:38 +00:00
|
|
|
# flags Optional flags (see below)
|
2013-07-02 16:40:45 +00:00
|
|
|
# upstream Upstream name and flags (with showupstream)
|
|
|
|
#
|
2013-07-27 01:00:45 +00:00
|
|
|
#
|
2013-07-02 16:40:45 +00:00
|
|
|
# The following optional flags have both colors, as above, and custom
|
|
|
|
# characters via __fish_git_prompt_char_<name>. The default character is
|
2013-07-27 02:00:38 +00:00
|
|
|
# shown in parenthesis. The default color for these flags can be also be set
|
|
|
|
# via the __fish_git_prompt_color_flags variable.
|
2013-07-02 16:40:45 +00:00
|
|
|
#
|
|
|
|
# __fish_git_prompt_showdirtystate
|
|
|
|
# dirtystate unstaged changes (*)
|
|
|
|
# stagedstate staged changes (+)
|
|
|
|
# invalidstate HEAD invalid (#, colored as stagedstate)
|
|
|
|
#
|
|
|
|
# __fish_git_prompt_showstashstate
|
|
|
|
# stashstate stashed changes ($)
|
|
|
|
#
|
|
|
|
# __fish_git_prompt_showuntrackedfiles
|
|
|
|
# untrackedfiles untracked files (%)
|
|
|
|
#
|
|
|
|
# __fish_git_prompt_showupstream (all colored as upstream)
|
|
|
|
# upstream_equal Branch matches upstream (=)
|
|
|
|
# upstream_behind Upstream has more commits (<)
|
|
|
|
# upstream_ahead Branch has more commits (>)
|
|
|
|
# upstream_diverged Upstream and branch have new commits (<>)
|
2013-07-27 02:00:38 +00:00
|
|
|
#
|
2013-07-27 01:00:45 +00:00
|
|
|
# __fish_git_prompt_show_informative_status
|
|
|
|
# (see also the flags for showdirtystate and showuntrackedfiles, above)
|
2013-07-27 15:08:33 +00:00
|
|
|
# cleanstate Working directory has no changes (✔)
|
2013-07-27 01:00:45 +00:00
|
|
|
#
|
|
|
|
#
|
2013-07-03 05:02:42 +00:00
|
|
|
# The separator between the branch name and flags can also be customized via
|
2013-07-27 15:12:34 +00:00
|
|
|
# __fish_git_prompt_char_stateseparator. It can only be colored by
|
|
|
|
# __fish_git_prompt_color. It normally defaults to a space ( ) and defaults
|
|
|
|
# to a vertical bar (|) when __fish_git_prompt_show_informative_status is set.
|
2013-07-03 05:02:42 +00:00
|
|
|
#
|
2013-07-27 01:00:45 +00:00
|
|
|
# The separator before the upstream information can be customized via
|
2013-07-27 15:08:33 +00:00
|
|
|
# __fish_git_prompt_char_upstream_prefix. It is colored like the rest of
|
2013-07-31 22:25:29 +00:00
|
|
|
# the upstream information. It defaults to nothing ().
|
2013-07-27 15:08:33 +00:00
|
|
|
#
|
2013-07-27 01:00:45 +00:00
|
|
|
#
|
2013-07-27 02:00:38 +00:00
|
|
|
# Turning on __fish_git_prompt_showcolorhints changes the colors as follows to
|
|
|
|
# more closely match the behavior in bash. Note that setting any of these
|
|
|
|
# colors manually will override these defaults.
|
|
|
|
#
|
|
|
|
# branch Defaults to green
|
|
|
|
# branch_detached New color, when head is detached, default red
|
|
|
|
# dirtystate Defaults to red
|
|
|
|
# stagedstate Defaults to green
|
|
|
|
# flags Defaults to --bold blue
|
2012-06-20 21:04:43 +00:00
|
|
|
|
|
|
|
function __fish_git_prompt_show_upstream --description "Helper function for __fish_git_prompt"
|
2013-07-02 15:08:20 +00:00
|
|
|
set -l show_upstream $__fish_git_prompt_showupstream
|
|
|
|
set -l svn_prefix # For better SVN upstream information
|
|
|
|
set -l informative
|
|
|
|
|
|
|
|
set -l svn_url_pattern
|
|
|
|
set -l count
|
2012-06-20 21:04:43 +00:00
|
|
|
set -l upstream git
|
|
|
|
set -l legacy
|
|
|
|
set -l verbose
|
2013-07-02 15:08:20 +00:00
|
|
|
|
2013-07-27 14:59:50 +00:00
|
|
|
# Default to informative if show_informative_status is set
|
|
|
|
if test -n "$__fish_git_prompt_show_informative_status"
|
|
|
|
set informative 1
|
|
|
|
end
|
|
|
|
|
2013-07-02 15:08:20 +00:00
|
|
|
set -l svn_remote
|
|
|
|
# get some config options from git-config
|
2013-08-26 14:24:59 +00:00
|
|
|
command git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' ^/dev/null | tr '\0\n' '\n ' | while read -l key value
|
2012-06-20 21:04:43 +00:00
|
|
|
switch $key
|
2013-07-02 15:08:20 +00:00
|
|
|
case bash.showupstream
|
2012-07-26 22:32:27 +00:00
|
|
|
set show_upstream $value
|
|
|
|
test -n "$show_upstream"; or return
|
2012-06-20 21:04:43 +00:00
|
|
|
case svn-remote.'*'.url
|
|
|
|
set svn_remote $svn_remote $value
|
2013-07-02 15:08:20 +00:00
|
|
|
# Avoid adding \| to the beginning to avoid needing #?? later
|
2012-06-20 21:04:43 +00:00
|
|
|
if test -n "$svn_url_pattern"
|
2013-07-02 15:08:20 +00:00
|
|
|
set svn_url_pattern $svn_url_pattern"\\|$value"
|
2012-06-20 21:04:43 +00:00
|
|
|
else
|
|
|
|
set svn_url_pattern $value
|
|
|
|
end
|
|
|
|
set upstream svn+git # default upstream is SVN if available, else git
|
2013-07-02 15:08:20 +00:00
|
|
|
|
|
|
|
# Save the config key (without .url) for later use
|
|
|
|
set -l remote_prefix (/bin/sh -c 'echo "${1%.url}"' -- $key)
|
|
|
|
set svn_prefix $svn_prefix $remote_prefix
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# parse configuration variables
|
2013-07-27 14:59:50 +00:00
|
|
|
# and clear informative default when needed
|
2012-07-26 22:32:27 +00:00
|
|
|
for option in $show_upstream
|
2012-06-20 21:04:43 +00:00
|
|
|
switch $option
|
|
|
|
case git svn
|
|
|
|
set upstream $option
|
2013-07-27 14:59:50 +00:00
|
|
|
set -e informative
|
2012-06-20 21:04:43 +00:00
|
|
|
case verbose
|
|
|
|
set verbose 1
|
2013-07-27 14:59:50 +00:00
|
|
|
set -e informative
|
2013-06-18 06:52:32 +00:00
|
|
|
case informative
|
|
|
|
set informative 1
|
2012-06-20 21:04:43 +00:00
|
|
|
case legacy
|
|
|
|
set legacy 1
|
2013-07-27 14:59:50 +00:00
|
|
|
set -e informative
|
2013-07-27 15:04:54 +00:00
|
|
|
case none
|
|
|
|
return
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Find our upstream
|
|
|
|
switch $upstream
|
|
|
|
case git
|
|
|
|
set upstream '@{upstream}'
|
|
|
|
case svn\*
|
|
|
|
# get the upstream from the 'git-svn-id: ...' in a commit message
|
|
|
|
# (git-svn uses essentially the same procedure internally)
|
|
|
|
set -l svn_upstream (git log --first-parent -1 --grep="^git-svn-id: \($svn_url_pattern\)" ^/dev/null)
|
|
|
|
if test (count $svn_upstream) -ne 0
|
|
|
|
echo $svn_upstream[-1] | read -l _ svn_upstream _
|
2013-06-03 16:58:23 +00:00
|
|
|
set svn_upstream (/bin/sh -c 'echo "${1%@*}"' -- $svn_upstream)
|
2012-07-14 01:56:37 +00:00
|
|
|
set -l cur_prefix
|
|
|
|
for i in (seq (count $svn_remote))
|
|
|
|
set -l remote $svn_remote[$i]
|
|
|
|
set -l mod_upstream (/bin/sh -c 'echo "${1#$2}"' -- $svn_upstream $remote)
|
|
|
|
if test "$svn_upstream" != "$mod_upstream"
|
|
|
|
# we found a valid remote
|
|
|
|
set svn_upstream $mod_upstream
|
|
|
|
set cur_prefix $svn_prefix[$i]
|
|
|
|
break
|
|
|
|
end
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if test -z "$svn_upstream"
|
|
|
|
# default branch name for checkouts with no layout:
|
|
|
|
if test -n "$GIT_SVN_ID"
|
|
|
|
set upstream $GIT_SVN_ID
|
|
|
|
else
|
|
|
|
set upstream git-svn
|
|
|
|
end
|
|
|
|
else
|
2013-06-03 16:58:23 +00:00
|
|
|
set upstream (/bin/sh -c 'val=${1#/branches}; echo "${val#/}"' -- $svn_upstream)
|
2013-07-02 15:08:20 +00:00
|
|
|
|
|
|
|
# Use fetch config to fix upstream
|
2013-08-26 14:24:59 +00:00
|
|
|
set -l fetch_val (command git config "$cur_prefix".fetch)
|
2012-07-14 01:56:37 +00:00
|
|
|
if test -n "$fetch_val"
|
|
|
|
set -l IFS :
|
|
|
|
echo "$fetch_val" | read -l trunk pattern
|
|
|
|
set upstream (/bin/sh -c 'echo "${1%/$2}"' -- $pattern $trunk)/$upstream
|
|
|
|
end
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
2013-07-02 15:08:20 +00:00
|
|
|
else if test $upstream = svn+git
|
2013-06-03 16:58:23 +00:00
|
|
|
set upstream '@{upstream}'
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Find how many commits we are ahead/behind our upstream
|
|
|
|
if test -z "$legacy"
|
2013-08-26 14:24:59 +00:00
|
|
|
set count (command git rev-list --count --left-right $upstream...HEAD ^/dev/null)
|
2012-06-20 21:04:43 +00:00
|
|
|
else
|
|
|
|
# produce equivalent output to --count for older versions of git
|
|
|
|
set -l os
|
2013-08-26 14:24:59 +00:00
|
|
|
set -l commits (command git rev-list --left-right $upstream...HEAD ^/dev/null; set os $status)
|
2012-06-20 21:04:43 +00:00
|
|
|
if test $os -eq 0
|
|
|
|
set -l behind (count (for arg in $commits; echo $arg; end | grep '^<'))
|
|
|
|
set -l ahead (count (for arg in $commits; echo $arg; end | grep -v '^<'))
|
|
|
|
set count "$behind $ahead"
|
|
|
|
else
|
|
|
|
set count
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# calculate the result
|
2013-06-17 17:29:34 +00:00
|
|
|
if test -n "$verbose"
|
2013-06-18 06:52:32 +00:00
|
|
|
echo $count | read -l behind ahead
|
|
|
|
switch "$count"
|
|
|
|
case '' # no upstream
|
|
|
|
case "0 0" # equal to upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_equal"
|
|
|
|
case "0 *" # ahead of upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_ahead$ahead"
|
|
|
|
case "* 0" # behind upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_behind$behind"
|
|
|
|
case '*' # diverged from upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_diverged$ahead-$behind"
|
|
|
|
end
|
2013-07-27 14:35:46 +00:00
|
|
|
else if test -n "$informative"
|
2013-06-18 06:52:32 +00:00
|
|
|
echo $count | read -l behind ahead
|
|
|
|
switch "$count"
|
|
|
|
case '' # no upstream
|
|
|
|
case "0 0" # equal to upstream
|
|
|
|
case "0 *" # ahead of upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_ahead$ahead"
|
|
|
|
case "* 0" # behind upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_behind$behind"
|
|
|
|
case '*' # diverged from upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_ahead$ahead$___fish_git_prompt_char_upstream_behind$behind"
|
|
|
|
end
|
2012-06-20 21:04:43 +00:00
|
|
|
else
|
2013-06-18 06:52:32 +00:00
|
|
|
switch "$count"
|
|
|
|
case '' # no upstream
|
|
|
|
case "0 0" # equal to upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_equal"
|
|
|
|
case "0 *" # ahead of upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_ahead$ahead"
|
|
|
|
case "* 0" # behind upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_behind$behind"
|
|
|
|
case '*' # diverged from upstream
|
|
|
|
echo "$___fish_git_prompt_char_upstream_prefix$___fish_git_prompt_char_upstream_diverged$ahead-$behind"
|
|
|
|
end
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function __fish_git_prompt --description "Prompt function for Git"
|
2013-08-26 14:24:59 +00:00
|
|
|
set -l repo_info (command git rev-parse --git-dir --is-inside-git-dir --is-bare-repository --is-inside-work-tree --short HEAD ^/dev/null)
|
2013-07-03 05:29:16 +00:00
|
|
|
test -n "$repo_info"; or return
|
|
|
|
|
|
|
|
set -l git_dir $repo_info[1]
|
|
|
|
set -l inside_gitdir $repo_info[2]
|
|
|
|
set -l bare_repo $repo_info[3]
|
|
|
|
set -l inside_worktree $repo_info[4]
|
|
|
|
set -l short_sha
|
|
|
|
if test (count $repo_info) = 5
|
|
|
|
set short_sha $repo_info[5]
|
|
|
|
end
|
2012-06-20 21:04:43 +00:00
|
|
|
|
2013-07-03 05:29:16 +00:00
|
|
|
set -l rbc (__fish_git_prompt_operation_branch_bare $repo_info)
|
2013-07-02 15:15:34 +00:00
|
|
|
set -l r $rbc[1] # current operation
|
|
|
|
set -l b $rbc[2] # current branch
|
2013-07-27 02:00:38 +00:00
|
|
|
set -l detached $rbc[3]
|
2013-06-03 16:58:23 +00:00
|
|
|
set -l w #dirty working directory
|
|
|
|
set -l i #staged changes
|
|
|
|
set -l s #stashes
|
|
|
|
set -l u #untracked
|
2013-07-27 02:00:38 +00:00
|
|
|
set -l c $rbc[4] # bare repository
|
2013-06-03 16:58:23 +00:00
|
|
|
set -l p #upstream
|
2013-06-18 20:26:01 +00:00
|
|
|
set -l informative_status
|
2012-06-20 21:04:43 +00:00
|
|
|
|
|
|
|
__fish_git_prompt_validate_chars
|
|
|
|
|
2013-07-03 05:29:16 +00:00
|
|
|
if test "true" = $inside_worktree
|
2013-06-18 20:26:01 +00:00
|
|
|
if test -n "$__fish_git_prompt_show_informative_status"
|
2013-07-27 15:12:34 +00:00
|
|
|
set informative_status "$___fish_git_prompt_char_stateseparator"(__fish_git_prompt_informative_status)
|
2013-06-18 06:52:32 +00:00
|
|
|
else
|
|
|
|
if test -n "$__fish_git_prompt_showdirtystate"
|
2013-08-26 14:24:59 +00:00
|
|
|
set -l config (command git config --bool bash.showDirtyState)
|
2013-06-18 06:52:32 +00:00
|
|
|
if test "$config" != "false"
|
|
|
|
set w (__fish_git_prompt_dirty)
|
2013-07-03 05:29:16 +00:00
|
|
|
set i (__fish_git_prompt_staged $short_sha)
|
2013-06-18 06:52:32 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-03 05:29:16 +00:00
|
|
|
if test -n "$__fish_git_prompt_showstashstate" -a -r $git_dir/refs/stash
|
|
|
|
set s $___fish_git_prompt_char_stashstate
|
2013-06-18 06:52:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if test -n "$__fish_git_prompt_showuntrackedfiles"
|
2013-08-26 14:24:59 +00:00
|
|
|
set -l config (command git config --bool bash.showUntrackedFiles)
|
2013-07-31 21:50:39 +00:00
|
|
|
if test "$config" != false
|
2013-08-26 14:24:59 +00:00
|
|
|
if command git ls-files --others --exclude-standard --error-unmatch -- '*' >/dev/null ^/dev/null
|
2013-07-03 04:41:20 +00:00
|
|
|
set u $___fish_git_prompt_char_untrackedfiles
|
|
|
|
end
|
2013-06-18 06:52:32 +00:00
|
|
|
end
|
|
|
|
end
|
2013-06-03 16:58:23 +00:00
|
|
|
end
|
2012-06-20 21:04:43 +00:00
|
|
|
|
2013-07-27 15:04:54 +00:00
|
|
|
if test -n "$__fish_git_prompt_showupstream" -o "$__fish_git_prompt_show_informative_status"
|
2013-06-03 16:58:23 +00:00
|
|
|
set p (__fish_git_prompt_show_upstream)
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
__fish_git_prompt_validate_colors
|
|
|
|
|
2013-07-27 02:00:38 +00:00
|
|
|
set -l branch_color $___fish_git_prompt_color_branch
|
|
|
|
set -l branch_done $___fish_git_prompt_color_branch_done
|
|
|
|
if test -n "$__fish_git_prompt_showcolorhints"
|
|
|
|
if test $detached = yes
|
|
|
|
set branch_color $___fish_git_prompt_color_branch_detached
|
|
|
|
set branch_done $___fish_git_prompt_color_branch_detached_done
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-20 21:04:43 +00:00
|
|
|
if test -n "$w"
|
|
|
|
set w "$___fish_git_prompt_color_dirtystate$w$___fish_git_prompt_color_dirtystate_done"
|
|
|
|
end
|
|
|
|
if test -n "$i"
|
|
|
|
set i "$___fish_git_prompt_color_stagedstate$i$___fish_git_prompt_color_stagedstate_done"
|
|
|
|
end
|
|
|
|
if test -n "$s"
|
|
|
|
set s "$___fish_git_prompt_color_stashstate$s$___fish_git_prompt_color_stashstate_done"
|
|
|
|
end
|
|
|
|
if test -n "$u"
|
|
|
|
set u "$___fish_git_prompt_color_untrackedfiles$u$___fish_git_prompt_color_untrackedfiles_done"
|
|
|
|
end
|
|
|
|
set b (/bin/sh -c 'echo "${1#refs/heads/}"' -- $b)
|
|
|
|
if test -n "$b"
|
2013-07-27 02:00:38 +00:00
|
|
|
set b "$branch_color$b$branch_done"
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
if test -n "$c"
|
|
|
|
set c "$___fish_git_prompt_color_bare$c$___fish_git_prompt_color_bare_done"
|
|
|
|
end
|
|
|
|
if test -n "$r"
|
|
|
|
set r "$___fish_git_prompt_color_merging$r$___fish_git_prompt_color_merging_done"
|
|
|
|
end
|
|
|
|
if test -n "$p"
|
|
|
|
set p "$___fish_git_prompt_color_upstream$p$___fish_git_prompt_color_upstream_done"
|
|
|
|
end
|
2013-05-25 06:15:46 +00:00
|
|
|
|
2013-06-03 16:58:23 +00:00
|
|
|
# Formatting
|
2013-07-03 05:02:42 +00:00
|
|
|
set -l space "$___fish_git_prompt_color$___fish_git_prompt_char_stateseparator$___fish_git_prompt_color_done"
|
2013-06-03 16:58:23 +00:00
|
|
|
set -l f "$w$i$s$u"
|
|
|
|
if test -n "$f"
|
2013-07-03 05:02:42 +00:00
|
|
|
set f "$space$f"
|
2013-06-03 16:58:23 +00:00
|
|
|
end
|
|
|
|
set -l format $argv[1]
|
|
|
|
if test -z "$format"
|
|
|
|
set format " (%s)"
|
|
|
|
end
|
2013-05-25 06:15:46 +00:00
|
|
|
|
2013-06-18 20:26:01 +00:00
|
|
|
printf "%s$format%s" "$___fish_git_prompt_color_prefix" "$___fish_git_prompt_color_prefix_done$c$b$f$r$p$informative_status$___fish_git_prompt_color_suffix" "$___git_ps_color_suffix_done"
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
### helper functions
|
|
|
|
|
2013-05-25 06:15:46 +00:00
|
|
|
function __fish_git_prompt_staged --description "__fish_git_prompt helper, tells whether or not the current branch has staged files"
|
2013-07-03 05:29:16 +00:00
|
|
|
set -l short_sha $argv[1]
|
|
|
|
|
2013-06-03 16:58:23 +00:00
|
|
|
set -l staged
|
2013-05-25 06:15:46 +00:00
|
|
|
|
2013-07-03 05:29:16 +00:00
|
|
|
if test -n "$short_sha"
|
2013-08-26 14:24:59 +00:00
|
|
|
command git diff-index --cached --quiet HEAD --; or set staged $___fish_git_prompt_char_stagedstate
|
2013-06-03 16:58:23 +00:00
|
|
|
else
|
|
|
|
set staged $___fish_git_prompt_char_invalidstate
|
|
|
|
end
|
2013-06-03 17:00:14 +00:00
|
|
|
echo $staged
|
2013-05-25 06:15:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function __fish_git_prompt_dirty --description "__fish_git_prompt helper, tells whether or not the current branch has tracked, modified files"
|
2013-06-03 16:58:23 +00:00
|
|
|
set -l dirty
|
2013-05-25 06:15:46 +00:00
|
|
|
|
2013-06-03 16:58:23 +00:00
|
|
|
set -l os
|
2013-08-26 14:24:59 +00:00
|
|
|
command git diff --no-ext-diff --quiet --exit-code
|
2013-06-03 16:58:23 +00:00
|
|
|
set os $status
|
|
|
|
if test $os -ne 0
|
|
|
|
set dirty $___fish_git_prompt_char_dirtystate
|
|
|
|
end
|
|
|
|
echo $dirty
|
2013-05-25 06:15:46 +00:00
|
|
|
end
|
|
|
|
|
2013-07-27 00:58:41 +00:00
|
|
|
set -g ___fish_git_prompt_status_order stagedstate invalidstate dirtystate untrackedfiles
|
|
|
|
|
2013-06-18 20:26:01 +00:00
|
|
|
function __fish_git_prompt_informative_status
|
2013-06-17 20:20:56 +00:00
|
|
|
|
2013-08-26 14:24:59 +00:00
|
|
|
set -l changedFiles (command git diff --name-status | cut -c 1-2)
|
|
|
|
set -l stagedFiles (command git diff --staged --name-status | cut -c 1-2)
|
2013-06-17 20:20:56 +00:00
|
|
|
|
2013-06-18 06:52:32 +00:00
|
|
|
set -l dirtystate (math (count $changedFiles) - (count (echo $changedFiles | grep "U")))
|
|
|
|
set -l invalidstate (count (echo $stagedFiles | grep "U"))
|
|
|
|
set -l stagedstate (math (count $stagedFiles) - $invalidstate)
|
2013-08-26 14:24:59 +00:00
|
|
|
set -l untrackedfiles (count (command git ls-files --others --exclude-standard))
|
2013-06-17 20:20:56 +00:00
|
|
|
|
2013-06-18 06:52:32 +00:00
|
|
|
set -l info
|
2013-06-17 20:20:56 +00:00
|
|
|
|
2013-06-18 06:52:32 +00:00
|
|
|
if [ (math $dirtystate + $invalidstate + $stagedstate + $untrackedfiles) = 0 ]
|
|
|
|
set info $___fish_git_prompt_color_cleanstate$___fish_git_prompt_char_cleanstate$___fish_git_prompt_color_cleanstate_done
|
|
|
|
else
|
|
|
|
for i in $___fish_git_prompt_status_order
|
|
|
|
if [ $$i != "0" ]
|
|
|
|
set -l color_var ___fish_git_prompt_color_$i
|
2013-07-27 13:58:45 +00:00
|
|
|
set -l color_done_var ___fish_git_prompt_color_{$i}_done
|
2013-06-18 06:52:32 +00:00
|
|
|
set -l symbol_var ___fish_git_prompt_char_$i
|
2013-06-17 20:20:56 +00:00
|
|
|
|
2013-06-18 06:52:32 +00:00
|
|
|
set -l color $$color_var
|
|
|
|
set -l color_done $$color_done_var
|
|
|
|
set -l symbol $$symbol_var
|
2013-06-17 20:20:56 +00:00
|
|
|
|
2013-06-18 06:52:32 +00:00
|
|
|
set -l count
|
2013-06-17 20:20:56 +00:00
|
|
|
|
2013-06-18 06:52:32 +00:00
|
|
|
if not set -q __fish_git_prompt_hide_$i
|
|
|
|
set count $$i
|
|
|
|
end
|
2013-06-17 20:20:56 +00:00
|
|
|
|
2013-06-18 06:52:32 +00:00
|
|
|
set info "$info$color$symbol$count$color_done"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-06-17 20:20:56 +00:00
|
|
|
|
2013-06-18 06:52:32 +00:00
|
|
|
echo $info
|
2013-06-17 20:20:56 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-07-02 15:15:34 +00:00
|
|
|
# Keeping these together avoids many duplicated checks
|
|
|
|
function __fish_git_prompt_operation_branch_bare --description "__fish_git_prompt helper, returns the current Git operation and branch"
|
2013-07-03 05:29:16 +00:00
|
|
|
# This function is passed the full repo_info array
|
|
|
|
set -l git_dir $argv[1]
|
|
|
|
set -l inside_gitdir $argv[2]
|
|
|
|
set -l bare_repo $argv[3]
|
|
|
|
set -l short_sha
|
|
|
|
if test (count $argv) = 5
|
|
|
|
set short_sha $argv[5]
|
|
|
|
end
|
|
|
|
|
2013-07-02 15:15:34 +00:00
|
|
|
set -l branch
|
|
|
|
set -l operation
|
2013-07-27 02:00:38 +00:00
|
|
|
set -l detached no
|
2013-06-03 16:58:23 +00:00
|
|
|
set -l bare
|
2013-07-03 04:50:37 +00:00
|
|
|
set -l step
|
|
|
|
set -l total
|
2013-07-02 15:15:34 +00:00
|
|
|
set -l os
|
2013-05-25 06:15:46 +00:00
|
|
|
|
2013-07-03 04:50:37 +00:00
|
|
|
if test -d $git_dir/rebase-merge
|
2013-07-02 15:16:11 +00:00
|
|
|
set branch (cat $git_dir/rebase-merge/head-name ^/dev/null)
|
2013-07-03 04:50:37 +00:00
|
|
|
set step (cat $git_dir/rebase-merge/msgnum ^/dev/null)
|
|
|
|
set total (cat $git_dir/rebase-merge/end ^/dev/null)
|
|
|
|
if test -f $git_dir/rebase-merge/interactive
|
|
|
|
set operation "|REBASE-i"
|
|
|
|
else
|
|
|
|
set operation "|REBASE-m"
|
|
|
|
end
|
2013-07-02 15:15:34 +00:00
|
|
|
else
|
|
|
|
if test -d $git_dir/rebase-apply
|
2013-07-03 04:50:37 +00:00
|
|
|
set step (cat $git_dir/rebase-apply/next ^/dev/null)
|
|
|
|
set total (cat $git_dir/rebase-apply/last ^/dev/null)
|
2013-07-02 15:15:34 +00:00
|
|
|
if test -f $git_dir/rebase-apply/rebasing
|
2013-07-03 05:06:52 +00:00
|
|
|
set branch (cat $git_dir/rebase-apply/head-name ^/dev/null)
|
2013-07-02 15:15:34 +00:00
|
|
|
set operation "|REBASE"
|
|
|
|
else if test -f $git_dir/rebase-apply/applying
|
|
|
|
set operation "|AM"
|
|
|
|
else
|
|
|
|
set operation "|AM/REBASE"
|
|
|
|
end
|
|
|
|
else if test -f $git_dir/MERGE_HEAD
|
|
|
|
set operation "|MERGING"
|
|
|
|
else if test -f $git_dir/CHERRY_PICK_HEAD
|
|
|
|
set operation "|CHERRY-PICKING"
|
2013-07-03 04:43:27 +00:00
|
|
|
else if test -f $git_dir/REVERT_HEAD
|
|
|
|
set operation "|REVERTING"
|
2013-07-02 15:15:34 +00:00
|
|
|
else if test -f $git_dir/BISECT_LOG
|
|
|
|
set operation "|BISECTING"
|
2013-06-03 16:58:23 +00:00
|
|
|
end
|
|
|
|
end
|
2013-07-03 04:50:37 +00:00
|
|
|
|
|
|
|
if test -n "$step" -a -n "$total"
|
|
|
|
set operation "$operation $step/$total"
|
|
|
|
end
|
2013-05-25 06:15:46 +00:00
|
|
|
|
2013-07-02 15:16:11 +00:00
|
|
|
if test -z "$branch"
|
2013-08-26 14:24:59 +00:00
|
|
|
set branch (command git symbolic-ref HEAD ^/dev/null; set os $status)
|
2013-06-03 16:58:23 +00:00
|
|
|
if test $os -ne 0
|
2013-07-02 15:16:11 +00:00
|
|
|
set detached yes
|
|
|
|
set branch (switch "$__fish_git_prompt_describe_style"
|
|
|
|
case contains
|
2013-08-26 14:24:59 +00:00
|
|
|
command git describe --contains HEAD
|
2013-07-02 15:16:11 +00:00
|
|
|
case branch
|
2013-08-26 14:24:59 +00:00
|
|
|
command git describe --contains --all HEAD
|
2013-07-02 15:16:11 +00:00
|
|
|
case describe
|
2013-08-26 14:24:59 +00:00
|
|
|
command git describe HEAD
|
2013-07-02 15:16:11 +00:00
|
|
|
case default '*'
|
2013-08-26 14:24:59 +00:00
|
|
|
command git describe --tags --exact-match HEAD
|
2013-07-02 15:16:11 +00:00
|
|
|
end ^/dev/null; set os $status)
|
2013-06-03 16:58:23 +00:00
|
|
|
if test $os -ne 0
|
2013-07-03 05:29:16 +00:00
|
|
|
if test -n "$short_sha"
|
|
|
|
set branch $short_sha...
|
|
|
|
else
|
2013-07-02 15:16:11 +00:00
|
|
|
set branch unknown
|
|
|
|
end
|
2013-06-03 16:58:23 +00:00
|
|
|
end
|
2013-07-02 15:16:11 +00:00
|
|
|
set branch "($branch)"
|
2013-06-03 16:58:23 +00:00
|
|
|
end
|
|
|
|
end
|
2013-05-25 06:15:46 +00:00
|
|
|
|
2013-07-03 05:29:16 +00:00
|
|
|
if test "true" = $inside_gitdir
|
|
|
|
if test "true" = $bare_repo
|
2013-07-02 15:15:34 +00:00
|
|
|
set bare "BARE:"
|
|
|
|
else
|
|
|
|
# Let user know they're inside the git dir of a non-bare repo
|
2013-06-03 16:58:23 +00:00
|
|
|
set branch "GIT_DIR!"
|
|
|
|
end
|
|
|
|
end
|
2013-05-25 06:15:46 +00:00
|
|
|
|
2013-06-03 16:58:23 +00:00
|
|
|
echo $operation
|
2013-07-02 15:15:34 +00:00
|
|
|
echo $branch
|
2013-07-27 02:00:38 +00:00
|
|
|
echo $detached
|
2013-07-02 15:15:34 +00:00
|
|
|
echo $bare
|
2013-05-25 06:15:46 +00:00
|
|
|
end
|
|
|
|
|
2013-06-18 20:40:09 +00:00
|
|
|
function __fish_git_prompt_set_char
|
|
|
|
set -l user_variable_name "$argv[1]"
|
|
|
|
set -l char $argv[2]
|
|
|
|
set -l user_variable $$user_variable_name
|
|
|
|
|
2013-07-27 15:08:33 +00:00
|
|
|
if test (count $argv) -ge 3
|
|
|
|
if test -n "$__fish_git_prompt_show_informative_status"
|
|
|
|
set char $argv[3]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-18 20:40:09 +00:00
|
|
|
set -l variable _$user_variable_name
|
|
|
|
set -l variable_done "$variable"_done
|
|
|
|
|
|
|
|
if not set -q $variable
|
|
|
|
set -g $variable (set -q $user_variable_name; and echo $user_variable; or echo $char)
|
2013-06-18 06:52:32 +00:00
|
|
|
end
|
2013-06-18 20:40:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function __fish_git_prompt_validate_chars --description "__fish_git_prompt helper, checks char variables"
|
|
|
|
|
2013-07-27 15:08:33 +00:00
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_cleanstate '✔'
|
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_dirtystate '*' '✚'
|
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_invalidstate '#' '✖'
|
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_stagedstate '+' '●'
|
2013-07-26 21:20:05 +00:00
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_stashstate '$'
|
2013-07-27 15:12:34 +00:00
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_stateseparator ' ' '|'
|
2013-07-27 15:08:33 +00:00
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_untrackedfiles '%' '…'
|
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_upstream_ahead '>' '↑'
|
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_upstream_behind '<' '↓'
|
2013-07-26 21:20:05 +00:00
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_upstream_diverged '<>'
|
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_upstream_equal '='
|
2013-07-31 22:25:29 +00:00
|
|
|
__fish_git_prompt_set_char __fish_git_prompt_char_upstream_prefix ''
|
2013-06-18 20:40:09 +00:00
|
|
|
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
|
2013-06-18 19:49:53 +00:00
|
|
|
function __fish_git_prompt_set_color
|
|
|
|
set -l user_variable_name "$argv[1]"
|
2013-06-18 20:20:28 +00:00
|
|
|
set -l user_variable $$user_variable_name
|
|
|
|
set -l user_variable_bright
|
|
|
|
|
2013-07-02 17:10:19 +00:00
|
|
|
set -l default default_done
|
|
|
|
switch (count $argv)
|
|
|
|
case 1 # No defaults given, use prompt color
|
|
|
|
set default $___fish_git_prompt_color
|
|
|
|
set default_done $___fish_git_prompt_color_done
|
|
|
|
case 2 # One default given, use normal for done
|
|
|
|
set default "$argv[2]"
|
|
|
|
set default_done (set_color normal)
|
|
|
|
case 3 # Both defaults given
|
|
|
|
set default "$argv[2]"
|
|
|
|
set default_done "$argv[3]"
|
|
|
|
end
|
|
|
|
|
2013-06-18 20:20:28 +00:00
|
|
|
if test (count $user_variable) -eq 2
|
|
|
|
set user_variable_bright $user_variable[2]
|
|
|
|
set user_variable $user_variable[1]
|
|
|
|
end
|
|
|
|
|
2013-06-18 19:49:53 +00:00
|
|
|
set -l variable _$user_variable_name
|
|
|
|
set -l variable_done "$variable"_done
|
|
|
|
|
|
|
|
if not set -q $variable
|
|
|
|
if test -n "$user_variable"
|
2013-06-18 20:20:28 +00:00
|
|
|
if test -n "$user_variable_bright"
|
2013-07-02 17:10:19 +00:00
|
|
|
set -g $variable (set_color --bold $user_variable)
|
2013-06-18 20:20:28 +00:00
|
|
|
else
|
|
|
|
set -g $variable (set_color $user_variable)
|
|
|
|
end
|
2013-06-18 19:49:53 +00:00
|
|
|
set -g $variable_done (set_color normal)
|
2012-06-20 21:04:43 +00:00
|
|
|
else
|
2013-07-02 17:10:19 +00:00
|
|
|
set -g $variable $default
|
|
|
|
set -g $variable_done $default_done
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
end
|
2013-06-18 19:49:53 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-07-27 02:00:38 +00:00
|
|
|
|
2013-06-18 19:49:53 +00:00
|
|
|
function __fish_git_prompt_validate_colors --description "__fish_git_prompt helper, checks color variables"
|
|
|
|
|
2013-07-02 17:10:19 +00:00
|
|
|
# Base color defaults to nothing (must be done first)
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color '' ''
|
|
|
|
|
2013-07-27 02:00:38 +00:00
|
|
|
# Normal colors
|
2013-06-18 19:49:53 +00:00
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_prefix
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_suffix
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_bare
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_merging
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_cleanstate
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_invalidstate
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_upstream
|
|
|
|
|
2013-07-27 02:00:38 +00:00
|
|
|
# Colors with defaults with showcolorhints
|
|
|
|
if test -n "$__fish_git_prompt_showcolorhints"
|
|
|
|
__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_dirtystate (set_color red)
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_stagedstate (set_color green)
|
|
|
|
else
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_flags
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_branch
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_dirtystate $___fish_git_prompt_color_flags $___fish_git_prompt_color_flags_done
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_stagedstate $___fish_git_prompt_color_flags $___fish_git_prompt_color_flags_done
|
|
|
|
end
|
|
|
|
|
|
|
|
# Branch_detached has a default, but is only used with showcolorhints
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_branch_detached (set_color red)
|
|
|
|
|
|
|
|
# Colors that depend on flags color
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_stashstate $___fish_git_prompt_color_flags $___fish_git_prompt_color_flags_done
|
|
|
|
__fish_git_prompt_set_color __fish_git_prompt_color_untrackedfiles $___fish_git_prompt_color_flags $___fish_git_prompt_color_flags_done
|
|
|
|
|
2012-06-20 21:04:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
set -l varargs
|
2013-07-27 13:59:36 +00:00
|
|
|
for var in repaint describe_style show_informative_status showdirtystate showstashstate showuntrackedfiles showupstream
|
2012-06-20 21:04:43 +00:00
|
|
|
set varargs $varargs --on-variable __fish_git_prompt_$var
|
|
|
|
end
|
|
|
|
function __fish_git_prompt_repaint $varargs --description "Event handler, repaints prompt when functionality changes"
|
|
|
|
if status --is-interactive
|
2013-07-27 15:08:33 +00:00
|
|
|
if test $argv[3] = __fish_git_prompt_show_informative_status
|
|
|
|
# Clear characters that have different defaults with/without informative status
|
|
|
|
for name in cleanstate dirtystate invalidstate stagedstate stateseparator untrackedfiles upstream_ahead upstream_behind
|
|
|
|
set -e ___fish_git_prompt_char_$name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-20 21:04:43 +00:00
|
|
|
commandline -f repaint ^/dev/null
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
set -l varargs
|
2013-07-26 21:20:05 +00:00
|
|
|
for var in '' _prefix _suffix _bare _merging _cleanstate _invalidstate _upstream _flags _branch _dirtystate _stagedstate _branch_detached _stashstate _untrackedfiles
|
2012-06-20 21:04:43 +00:00
|
|
|
set varargs $varargs --on-variable __fish_git_prompt_color$var
|
|
|
|
end
|
2013-07-27 02:00:38 +00:00
|
|
|
set varargs $varargs --on-variable __fish_git_prompt_showcolorhints
|
2012-06-20 21:04:43 +00:00
|
|
|
function __fish_git_prompt_repaint_color $varargs --description "Event handler, repaints prompt when any color changes"
|
|
|
|
if status --is-interactive
|
|
|
|
set -l var $argv[3]
|
|
|
|
set -e _$var
|
|
|
|
set -e _{$var}_done
|
2013-07-27 02:00:38 +00:00
|
|
|
if test $var = __fish_git_prompt_color -o $var = __fish_git_prompt_color_flags -o $var = __fish_git_prompt_showcolorhints
|
2012-06-20 21:04:43 +00:00
|
|
|
# reset all the other colors too
|
2013-07-27 02:00:38 +00:00
|
|
|
for name in prefix suffix bare merging branch dirtystate stagedstate invalidstate stashstate untrackedfiles upstream flags
|
2012-06-20 21:04:43 +00:00
|
|
|
set -e ___fish_git_prompt_color_$name
|
|
|
|
set -e ___fish_git_prompt_color_{$name}_done
|
|
|
|
end
|
|
|
|
end
|
|
|
|
commandline -f repaint ^/dev/null
|
|
|
|
end
|
|
|
|
end
|
2013-07-26 21:20:05 +00:00
|
|
|
|
2012-06-20 21:04:43 +00:00
|
|
|
set -l varargs
|
2013-07-26 21:20:05 +00:00
|
|
|
for var in cleanstate dirtystate invalidstate stagedstate stashstate stateseparator untrackedfiles upstream_ahead upstream_behind upstream_diverged upstream_equal upstream_prefix
|
2012-06-20 21:04:43 +00:00
|
|
|
set varargs $varargs --on-variable __fish_git_prompt_char_$var
|
|
|
|
end
|
|
|
|
function __fish_git_prompt_repaint_char $varargs --description "Event handler, repaints prompt when any char changes"
|
|
|
|
if status --is-interactive
|
|
|
|
set -e _$argv[3]
|
|
|
|
commandline -f repaint ^/dev/null
|
|
|
|
end
|
|
|
|
end
|