From 6a731c345e81de8b2857375077b543c1e2745f01 Mon Sep 17 00:00:00 2001 From: anemofilia Date: Sun, 6 Aug 2023 00:14:42 -0300 Subject: [PATCH] Fix fish prompt --- files/fish/functions/fish_prompt.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/fish/functions/fish_prompt.fish b/files/fish/functions/fish_prompt.fish index 6bde68c..7a0dcdc 100644 --- a/files/fish/functions/fish_prompt.fish +++ b/files/fish/functions/fish_prompt.fish @@ -8,7 +8,7 @@ end function fish_cwd_prompt set -l cwd (pwd) test $cwd = $HOME && printf "~" || \ - normal "%s/%s" (basename (dirname $cwd)) (basename $cwd) + printf "%s/%s" (basename (dirname $cwd)) (basename $cwd) end function fish_prompt