Benjamin Fischer

Results 51 comments of Benjamin Fischer

I think the returned result is correct here because `--reload=value` is only parsed as `string` if `boolean` is set to `true`, but in your example it is set to `["reload"]`,...

No it is not supported rn but sounds reasonable for me. I think we could implement it like this: ```ts const item: string = await Select.prompt({ message: "Select an item",...

Any help is wellcome 🙂

thx @CanRau, i opened a PR with a fix for this. does this work for you now? you can test it with this url: `https://raw.githubusercontent.com/c4spar/deno-cliffy/81fb4d8e59ae7ec8f9a2f7864a546c4d0146c15b/command/mod.ts`

yeah i noticed this as well. will try to improve th performence. as workaround you can call the `.reset()` method on your sub commands, than there shuld be no type...

@grempe could you check please if it works for you without calling the `.reset()` method if you import cliffy from this url `https://github.com/c4spar/deno-cliffy/blob/78a31cc494fbe6fe14f94efd5087df387018ffaa/command/mod.ts`? Or do you also get this performance...

Hi @prcdpr, there is an issue with `Deno.stdout.write` which doesn't handle unicode characters well. There is already an deno issue https://github.com/denoland/deno/issues/6001. But i found a workaourund here https://github.com/denoland/deno/issues/6131#issuecomment-640032166. You have...

Reopening because this is still an issue.

Hi @Lnncoco, this is a known issue with deno, some special keys do not work on Windows and there is currently no workaround for this. https://github.com/denoland/deno/issues/5945 In the meantime you...

`u` and `d` means `up` and `down`, someone made a pr to add these aliases. `8` and `2` works for `up` and `down` too. But you can also override all...