Maxim Starodub

Results 4 issues of Maxim Starodub

Hello, thanks for sharing this very readable implementation. There's one thing that does not make sense for me at the moment: why do you use two separate contexts? I've seen...

Hello, is it possible to make tab completion case insensitive? This would be a usability improvement for macOS, where the default file system is case-insensitive. Thank you.

enhancement

enhancement
good first issue

```python import trio import trio_asyncio from trio_asyncio import aio_as_trio as a2t from curl_cffi import requests as ccr from aioresult import ResultCapture urls = [ 'https://google.com/', 'https://facebook.com/', 'https://twitter.com/', ] async def...