The number of words in the short help text of top-level commands (host, help, etc.) would influence the rendering of their CLI completions, leading to h displaying help and host as completions on the same line, making it look like the suggested completion was help host.
Very bizarre. To fix this we just disable display_meta for top-level command completions. Yeah, not ideal.
The number of words in the short help text of top-level commands (
host
,help
, etc.) would influence the rendering of their CLI completions, leading toh
displayinghelp
andhost
as completions on the same line, making it look like the suggested completion washelp host
.Very bizarre. To fix this we just disable
display_meta
for top-level command completions. Yeah, not ideal.