Darren Burns
Darren Burns
I added a snapshot test and updated the docs. Works great: https://github.com/Textualize/textual/assets/5740731/cd0298bf-b3cf-4d15-abfa-b9332ff1cd0e
@willmcgugan Wondering if we should close this?
Yes, the contents of the dropdown can be dynamic and based on the current value and cursor position inside the `Input`. You'll basically have to write your own function which...
Thanks for the report I haven't been able to reproduce this on MacOS - so it may be a Windows issue. Does it only happen on command prompt?
It's difficult for this to work in the form because `ctrl+k` for example deletes the text between the cursor and the end of the line. It could work for the...
This is a nice idea - we have the [Suggester](https://textual.textualize.io/widgets/input/#textual.widgets._input.Input.suggester) feature in Textual now too which shows the greyed-out completion text that could be leveraged while implementing this.
I've tried to reproduce this but can't. If you can write a really small Click app, just a few lines, that shows this error happening I can look to debug...
Thanks for this! Does it make sense to have `hide_input` on options that don't have `prompt`? My gut feeling is that `hide_input` is not something that Trogon should handle at...
I think `hide_input` doesn't make sense, since `hide_input` is something Click uses when `prompt=True` to hide the characters the user types. All of the `prompt` stuff is handled inside Click.
Opened a PR for this. For future reference, to add a development dependency in Poetry you can do: ```bash poetry add --group dev isort ```