Philipp Hack
Philipp Hack
### FAQ - [X] I have checked the [FAQ](https://github.com/hrsh7th/nvim-cmp/blob/15f08a8faa22d52480cdcb9ef9ca698120f04363/doc/cmp.txt#L616) and it didn't resolve my problem. ### Issues - [X] I have checked [existing issues](https://github.com/hrsh7th/nvim-cmp/issues) and there are no open or...
Instead of having separate switches for circadian lighting and the actual light, I like to create template lights that transparently include circadian lighting. My implementation looks like this: ```yaml switch:...
A hydra for debugging with nvim-dap. Just dropping this here in the hopes that somebody may find this useful. ```lua local dap = require('dap') local hint = [[ ^ ^Step^...
It would be super nice if we could do something like this: ```python respx.get("example.com").respond(cookies={"foo": "bar"}) cookies = httpx.Cookies() respx.get("example.com").respond(cookies=cookies) ```
It would be nice to have more file formats for configuration files. When I started this project, I decided to use [Configobj](https://configobj.readthedocs.io/en/latest/configobj.html) as a configuration file parser, because it supports...
By the way, as for splitting the tests into files I would propose to split them into three files: 1. `test_configuration_option.py`: tests that don't care about the `implicit` argument (could...