Oļegs Čapligins
Oļegs Čapligins
Library has got new lease of life. Creators of the original BMPM are now involved: Stephen P. Morse and Alexandre Beider. Algorithm of phonetic matching for Arabic language will be...
Whoever faces similar issue, the only workaround I've found so far is to monkey-patch `action_show_command_info()`, preventing the app from falling into exception. **Disabling ctrl+o** ```python from trogon import tui, Trogon...
Better temporary fix while [PR#120](https://github.com/Textualize/trogon/pull/120) is open: ```python from trogon.widgets.command_info import CommandInfo from trogon.widgets.form import CommandForm Trogon.action_show_command_info = lambda self: self.push_screen(CommandInfo(self.query_one(CommandForm).command_schema)) @tui #.... ``` After this monekypatching ctrl+o displays correct...