summaryrefslogtreecommitdiff
path: root/plugins/gitfast/updates.patch
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2020-11-21 14:57:26 -0700
committerTuowen Zhao <ztuowen@gmail.com>2020-11-21 14:57:26 -0700
commit3aaa0bc62ece494dd2b6e47a191de79e562156f9 (patch)
tree53b623b60358bd9b8a5f9d267166f717e2f3947c /plugins/gitfast/updates.patch
parent058885f5263f29f046c96ea2ecf55e6dca3ed321 (diff)
parent88b3f028f4a2ffa4f3853a11e4b8e0d78008ca34 (diff)
downloadzsh-3aaa0bc62ece494dd2b6e47a191de79e562156f9.tar.gz
zsh-3aaa0bc62ece494dd2b6e47a191de79e562156f9.tar.bz2
zsh-3aaa0bc62ece494dd2b6e47a191de79e562156f9.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'plugins/gitfast/updates.patch')
-rw-r--r--plugins/gitfast/updates.patch56
1 files changed, 0 insertions, 56 deletions
diff --git a/plugins/gitfast/updates.patch b/plugins/gitfast/updates.patch
deleted file mode 100644
index 28a31f859..000000000
--- a/plugins/gitfast/updates.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-diff --git b/plugins/gitfast/_git a/plugins/gitfast/_git
-index e2554130..a2e3bef5 100644
---- b/plugins/gitfast/_git
-+++ a/plugins/gitfast/_git
-@@ -30,7 +30,7 @@ if [ -z "$script" ]; then
- local -a locations
- local e
- locations=(
-- $(dirname ${funcsourcetrace[1]%:*})/git-completion.bash
-+ "$(dirname ${funcsourcetrace[1]%:*})/git-completion.bash"
- '/etc/bash_completion.d/git' # fedora, old debian
- '/usr/share/bash-completion/completions/git' # arch, ubuntu, new debian
- '/usr/share/bash-completion/git' # gentoo
-@@ -214,8 +214,10 @@ _git ()
-
- if (( $+functions[__${service}_zsh_main] )); then
- __${service}_zsh_main
-- else
-+ elif (( $+functions[__${service}_main] )); then
- emulate ksh -c __${service}_main
-+ elif (( $+functions[_${service}] )); then
-+ emulate ksh -c _${service}
- fi
-
- let _ret && _default && _ret=0
-diff --git b/plugins/gitfast/git-completion.bash a/plugins/gitfast/git-completion.bash
-index 9c8f7380..14012cab 100644
---- b/plugins/gitfast/git-completion.bash
-+++ a/plugins/gitfast/git-completion.bash
-@@ -2915,6 +2915,6 @@ __git_complete gitk __gitk_main
- # when the user has tab-completed the executable name and consequently
- # included the '.exe' suffix.
- #
--if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
-+if [[ "$OSTYPE" = cygwin* ]]; then
- __git_complete git.exe __git_main
- fi
-diff --git b/plugins/gitfast/git-prompt.sh a/plugins/gitfast/git-prompt.sh
-index 97eacd78..c1de34eb 100644
---- b/plugins/gitfast/git-prompt.sh
-+++ a/plugins/gitfast/git-prompt.sh
-@@ -502,9 +502,11 @@ __git_ps1 ()
-
- local z="${GIT_PS1_STATESEPARATOR-" "}"
-
-- # NO color option unless in PROMPT_COMMAND mode
-- if [ $pcmode = yes ] && [ -n "${GIT_PS1_SHOWCOLORHINTS-}" ]; then
-- __git_ps1_colorize_gitstring
-+ # NO color option unless in PROMPT_COMMAND mode or it's Zsh
-+ if [ -n "${GIT_PS1_SHOWCOLORHINTS-}" ]; then
-+ if [ $pcmode = yes ] || [ -n "${ZSH_VERSION-}" ]; then
-+ __git_ps1_colorize_gitstring
-+ fi
- fi
-
- b=${b##refs/heads/}