$ scala-cli e
(eval):5: unmatched '
(eval):5: unmatched '
(eval):5: unmatched '
The problem seems to be with those escaped ' characters:
$ scala-cli complete zsh-v1 "1" "e"
local -a args306746944
args306746944=(
'export:The \'export\' sub-command is experimental.'
)
_describe command args306746944
Without the backslashes the completions work, but the quotes simply aren't printed. I'm not sure if there's any way to output single quotes succesfully...
The problem seems to be with those escaped
'characters:Without the backslashes the completions work, but the quotes simply aren't printed. I'm not sure if there's any way to output single quotes succesfully...