From 1a1a9b9927fea2393256e05af93dbdc0095d54d1 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Fri, 16 Dec 2016 10:43:40 -0800 Subject: [PATCH] Prevent error in acidhub prompt by quoting the regex string errors if this regex isn't quoted. This results in this error: http://stackoverflow.com/questions/40942185/fish-shell-init-git-repo-yields-constant-terminal-output-after-every-command Signed-off-by: Tim Smith --- share/tools/web_config/sample_prompts/acidhub.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/tools/web_config/sample_prompts/acidhub.fish b/share/tools/web_config/sample_prompts/acidhub.fish index 08fd47fe7..24d675396 100644 --- a/share/tools/web_config/sample_prompts/acidhub.fish +++ b/share/tools/web_config/sample_prompts/acidhub.fish @@ -12,7 +12,7 @@ function fish_prompt -d "Write out the prompt" if [ (_git_branch_name) ] set -l git_branch (set_color -o blue)(_git_branch_name) if [ (_is_git_dirty) ] - for i in (git branch -qv --no-color | string match -r \* | cut -d' ' -f4- | cut -d] -f1 | tr , \n)\ + for i in (git branch -qv --no-color | string match -r '\*' | cut -d' ' -f4- | cut -d] -f1 | tr , \n)\ (git status --porcelain | cut -c 1-2 | uniq) switch $i case "*[ahead *"