From d5d80c0742a5022f543cffbd1e01d6cdf3d1507f Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sun, 13 Jan 2019 16:14:04 -0600 Subject: [PATCH] Fix extra space in `fish_title` Closes #5517. Credit goes to @jadenPete. [skip-ci] --- share/functions/fish_title.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/fish_title.fish b/share/functions/fish_title.fish index 5eacb73e9..87abe894b 100644 --- a/share/functions/fish_title.fish +++ b/share/functions/fish_title.fish @@ -1,3 +1,3 @@ function fish_title - echo (status current-command) " " (__fish_pwd) + echo (status current-command) (__fish_pwd) end