textual-dev icon indicating copy to clipboard operation
textual-dev copied to clipboard

Development tools for Textual

Results 17 textual-dev issues
Sort by recently updated
recently updated
newest added

`textual run --help` mentions `EXTRA_ARGS`: `Usage: textual run [OPTIONS] FILE or FILE:APP [EXTRA_ARGS]...`. It does not further describe what those are, but convention suggests them being arguments to the to-be-run...

Textual serve shows 403 (forbidden) http status codes once it has launched. If I try to access the app via the browser, I only see the Textual logo. The logs...

Hi! I'm using `textual console` to show the print statements of my program as suggested in the documentation. However I noticed this doesn't show the print() from my other processes...

When running `textual keys`, currently the 'Clear' button will have initial focus. This can be confusing if you're trying to test the `enter` key with some modifiers, as this might...

Disable the command palette for `textual keys`. Since this tool is designed for debugging keys, pressing `ctrl+p` should just show the key event.

closes #49 Another option is to fix this in Textual itself; you can remove the guard here: https://github.com/Textualize/textual/blob/3427dbaed666a9af926c711c0eed552260738cd2/src/textual/app.py#L3605-L3606 and just call `self._disconnect_devtools()`, since that checks for the presence of devtools...

On Textual 6.4 and textual-dev==1.8.0, running Harlequin with: ```bash uv run textual run --dev -c harlequin ``` Upon exit, this error is printed: ``` Unclosed client session client_session: ``` Adding...