From d9c03bd976d40282ed0f61e1a4d56f362f37089a Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Sun, 14 Jun 2020 21:32:06 -0400 Subject: [PATCH] Fix syntax error in SSH segment string --- config.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.fish b/config.fish index 470a708..5f4ec74 100644 --- a/config.fish +++ b/config.fish @@ -198,7 +198,7 @@ function fish_prompt --description 'Display a formatted terminal prompt' set -l ssh_seg "" if test -n "$SSH_CONNECTION" - set ssh_seg "$white[ssh]$normal " + set ssh_seg "$white" "[ssh]" "$normal " end #############################