From 879d03d0fe2173e1100786e39dd0bac0e6f72fa0 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Thu, 23 Apr 2015 17:53:40 -0700 Subject: [PATCH] Reset the color after printing the CWD in classic+git prompt Fixes #2034 --- share/tools/web_config/sample_prompts/classic_git.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/tools/web_config/sample_prompts/classic_git.fish b/share/tools/web_config/sample_prompts/classic_git.fish index aa4527f70..39f3ab812 100644 --- a/share/tools/web_config/sample_prompts/classic_git.fish +++ b/share/tools/web_config/sample_prompts/classic_git.fish @@ -91,5 +91,5 @@ function fish_prompt --description 'Write out the prompt' ) end - echo -n -s (set_color $fish_color_user) "$USER" $normal @ (set_color $fish_color_host) "$__fish_prompt_hostname" $normal ' ' (set_color $color_cwd) (prompt_pwd) (__fish_git_prompt) $normal $prompt_status "$mode_str" "> " + echo -n -s (set_color $fish_color_user) "$USER" $normal @ (set_color $fish_color_host) "$__fish_prompt_hostname" $normal ' ' (set_color $color_cwd) (prompt_pwd) $normal (__fish_git_prompt) $normal $prompt_status "$mode_str" "> " end