From 20688661aaeb85590f10fabf84b442ff5a76b60f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 16 Jul 2021 19:14:41 +0530 Subject: [PATCH] ... --- kitty/complete.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/complete.py b/kitty/complete.py index b94cfa33e..d4ef20fe4 100644 --- a/kitty/complete.py +++ b/kitty/complete.py @@ -285,7 +285,7 @@ def fish_output_serializer(ans: Completions) -> str: lines = [] for description, matches in ans.match_groups.items(): for word in matches: - lines.append(word.replace('\n', '')) + lines.append(word.replace('\n', ' ')) # debug('\n'.join(lines)) return '\n'.join(lines) # }}}