This commit is contained in:
Kovid Goyal 2021-07-16 19:14:41 +05:30
parent cbbd9f475e
commit 20688661aa
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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)
# }}}