After weeks of hard work, I'm starting to get something really nice. My new question is about the customization of the dagger call --help output.
I have a very large number of functions and the current output is probably a little indigestible in my case. I would say that the existing output is brilliant when we've a small set of functions and so easy to implement (=in fact, we just need to do nothing since it's fully managed by Dagger).
Do you think it's possible to do some customizations? For example, I've tried to put ANSI notation (033[1;32m%s\033[0m) in my docstring but it's not interpreted.
I'm thinking to:
- is it possible to customize the display e.g. in three columns (function name, target language, description).
- it would be nice to be able to put URLs in light grey, language in blue, etc.).
- ..
Also some functions are returning string (the stdout) and some are returning an object (a Directory one). Is it possible to clearly make the distinction on the screen?
Thank you in advance for any ideas you may have to help my users to faster understand this screen.