summaryrefslogtreecommitdiffstats
path: root/contrib/completion/git-prompt.sh
diff options
context:
space:
mode:
authorAvi Halachmi (:avih) <avihpit@yahoo.com>2024-08-20 03:48:32 +0200
committerJunio C Hamano <gitster@pobox.com>2024-08-20 17:28:19 +0200
commitfbcdfab34852329929e6bfdd2bac8e49f2e3d8e3 (patch)
treea9d8150f9d39b70ee4129d4ee96753c0992894e2 /contrib/completion/git-prompt.sh
parentgit-prompt: ta-da! document usage in other shells (diff)
downloadgit-fbcdfab34852329929e6bfdd2bac8e49f2e3d8e3.tar.xz
git-fbcdfab34852329929e6bfdd2bac8e49f2e3d8e3.zip
git-prompt: support custom 0-width PS1 markers
When using colors, the shell needs to identify 0-width substrings in PS1 - such as color escape sequences - when calculating the on-screen width of the prompt. Until now, we used the form %F{<color>} in zsh - which it knows is 0-width, or otherwise use standard SGR esc sequences wrapped between byte values 1 and 2 (SOH, STX) as 0-width start/end markers, which bash/readline identify as such. But now that more shells are supported, the standard SGR sequences typically work, but the SOH/STX markers might not be identified. This commit adds support for vars GIT_PS1_COLOR_{PRE,POST} which set custom 0-width markers or disable the markers. Signed-off-by: Avi Halachmi (:avih) <avihpit@yahoo.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r--contrib/completion/git-prompt.sh19
1 files changed, 12 insertions, 7 deletions
diff --git a/contrib/completion/git-prompt.sh b/contrib/completion/git-prompt.sh
index 6be2f1dd90..6186c474ba 100644
--- a/contrib/completion/git-prompt.sh
+++ b/contrib/completion/git-prompt.sh
@@ -129,11 +129,16 @@
# strings (SGR color sequences) when calculating the on-screen
# prompt width, to maintain correct input editing at the prompt.
#
-# Currently there's no support for different markers, so if editing
-# behaves weird when using colors in __git_ps1, then the solution
-# is either to disable colors, or, in some shells which only care
-# about the width of the last prompt line (e.g. busybox-ash),
-# ensure the git output is not at the last line, maybe like so:
+# To replace or disable the 0-width markers, set GIT_PS1_COLOR_PRE
+# and GIT_PS1_COLOR_POST to other markers, or empty (nul) to not
+# use markers. For instance, some shells support '\[' and '\]' as
+# start/end markers in PS1 - when invoking __git_ps1 with 3/4 args,
+# but it may or may not work in command substitution mode. YMMV.
+#
+# If the shell doesn't support 0-width markers and editing behaves
+# incorrectly when using colors in __git_ps1, then, other than
+# disabling color, it might be solved using multi-line prompt,
+# where the git status is not at the last line, e.g.:
# PS1='\n\w \u@\h$(__git_ps1 " (%s)")\n\$ '
# check whether printf supports -v
@@ -309,8 +314,8 @@ __git_ps1_colorize_gitstring ()
# \001 (SOH) and \002 (STX) are 0-width substring markers
# which bash/readline identify while calculating the prompt
# on-screen width - to exclude 0-screen-width esc sequences.
- local c_pre="${__git_SOH}${__git_ESC}["
- local c_post="m${__git_STX}"
+ local c_pre="${GIT_PS1_COLOR_PRE-$__git_SOH}${__git_ESC}["
+ local c_post="m${GIT_PS1_COLOR_POST-$__git_STX}"
local c_red="${c_pre}31${c_post}"
local c_green="${c_pre}32${c_post}"