From 932880bb6dcb827b8ea1878334880a34860bc0da Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Thu, 12 Nov 2020 01:30:25 +0900 Subject: [PATCH 1/2] Remove fish_right_prompt from wrong file --- functions/fish_prompt.fish | 7 ------- 1 file changed, 7 deletions(-) diff --git a/functions/fish_prompt.fish b/functions/fish_prompt.fish index 0950c3ab..15d8f8e3 100644 --- a/functions/fish_prompt.fish +++ b/functions/fish_prompt.fish @@ -13,10 +13,3 @@ function fish_prompt --description 'Created by tide configure' _tide_right_prompt _tide_left_prompt end - -function fish_right_prompt - printf '%s' $_tide_fish_right_prompt_display - # Right prompt is always the last thing on the line - # therefore reset colors for tab completion - set_color normal -end \ No newline at end of file From f87c2dbb529a8f2aa820c460c153213ac1d1f615 Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Thu, 12 Nov 2020 01:32:26 +0900 Subject: [PATCH 2/2] Create fish_right_prompt.fish --- functions/fish_right_prompt.fish | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 functions/fish_right_prompt.fish diff --git a/functions/fish_right_prompt.fish b/functions/fish_right_prompt.fish new file mode 100644 index 00000000..c945bea6 --- /dev/null +++ b/functions/fish_right_prompt.fish @@ -0,0 +1,6 @@ +function fish_right_prompt + printf '%s' $_tide_fish_right_prompt_display + # Right prompt is always the last thing on the line + # therefore reset colors for tab completion + set_color normal +end