Michele Campeotto
Michele Campeotto
Dew point is a more interesting value to assess human comfort than just pure temperature and humidity, this change calculates an approximation and publishes it to an mqtt topic. Elgato...
It's difficult to see the cursor when in visual mode because Cursor uses reverse and Visual foreground is very similar to the Normal background. I worked around this by setting...
I realize this is a real corner case but the fix seems to be simple. Context: for my dotfiles I use a bare repository and a shell alias to call...
Some color schemes don't support toggling light/dark background and trying to do it results in a mangled color scheme. I fixed this by overriding the `yob` map, but I was...
I have a table with UUID columns. If I set `uuidSerialization = text` the comparison between the column and a UUID fails because the argument is being bound as `blob`...
Currently LighterError includes errcode, but sometimes it's useful to have access to extended error codes, either as part of LigherError or with an option to enable them with `sqlite3_extended_result_codes()`.
### Explain the issue According to the "Supporting a new language (treesitter)" wiki page, only the `open` and `scope` captures are required, but this is not working: without a mid...
This has been implemented in Fennel so we can get the plugin ready. https://todo.sr.ht/~technomancy/fennel/255
Neovim 0.11 supports distributing language server configuration runtime files like syntax, indent, etc. Note that this does not automatically activate the language server, the user needs to opt-in by calling...
When treesitter is enabled in nvim the default syntax rules are not applied, so the synID checks always fail. This adds a check for the treesitter syntax captures. Fixes #8