This commit is contained in:
Kovid Goyal 2021-07-11 21:39:54 +05:30
parent cdd8e52116
commit b813e1f7ab
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -264,8 +264,9 @@ def zsh_output_serializer(ans: Completions) -> str:
lines.append('shift words')
lines.append('(( CURRENT-- ))')
lines.append(f'_normal -p "{ans.delegate.precommand}"')
# debug('\n'.join(lines))
return '\n'.join(lines)
result = '\n'.join(lines)
# debug(result)
return result
@output_serializer