From 4bf957240b398b77a159050580ae59332e0243a2 Mon Sep 17 00:00:00 2001 From: lhark Date: Sun, 18 Aug 2019 00:08:56 +0000 Subject: [PATCH] [fish] Return prompt to full ascii --- config/fish/functions/fish_prompt.fish | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/fish/functions/fish_prompt.fish b/config/fish/functions/fish_prompt.fish index 40d5b0e..8b64dbc 100644 --- a/config/fish/functions/fish_prompt.fish +++ b/config/fish/functions/fish_prompt.fish @@ -25,16 +25,16 @@ function fish_prompt --description 'Write out the prompt' switch $fish_bind_mode case default set_color --bold --background red black - echo -n '⮜N⮞' + echo -n '' case insert set_color --bold green - echo -n '⮜I⮞' + echo -n '' case replace_one set_color --bold --background yellow black - echo -n '⮜R⮞' + echo -n '' case visual set_color --bold --background magenta black - echo -n '⮜V⮞' + echo -n '' end set_color normal