Kirill Klenov

Results 25 comments of Kirill Klenov

Thanks for the feedback. You are certainly right. But the module was developed for myself and I do not attach any importance to documentation. I'll do it as soon as...

Thank you for the feedback. I dont have much time now, maybe PR?

The benchmark is mainly focused on ASGI frameworks. 9 of 11 frameworks supports ASGI and runs in ASGI mode (emmet has ASGI support). `Tornado` and `aiohttp` have been added for...

Obviously Starlette's ``SessionMiddleware`` depends on ``Starlette`` itself. ``ASGI-Sessions`` based on ``ASGI-Tools`` which one much smaller (ASGI-Tools not going to include support template engine, graphql, databases, authentication and etc support). The...

@florimondmanca you able to find a little reference in the ASGI-Babel readme. First, you need to extract messages from your python/templates/etc files using ``pybabel`` (http://babel.pocoo.org/en/latest/messages.html, http://babel.pocoo.org/en/latest/cmdline.html) and compile them. I'm...

@florimondmanca also you are able to check a **simple** example here: https://github.com/klen/asgi-babel/blob/develop/example/__init__.py Makefile contains instructions on how I extract the messages: https://github.com/klen/asgi-babel/blob/develop/Makefile#L67 In real life, you can use templates (jinja/etc)...

Why not? But I've no time now. But a PR is very appreciated.

I've added `virtualenv` support for python runners. As an alternative for the current moment, you may use plugins like [nvim-config-local](https://github.com/klen/nvim-config-local) and setup test runners locally in your repos: ```lua --...

@mrjones2014 I don't know rust, could you please provide an example repo?

@mrjones2014 I've add the option: Before use, you have to enable it for cargo-test runner: ```lua require('nvim-test.runners.cargo-test'):setup { package = true } ```