Adam Regasz-Rethy
Adam Regasz-Rethy
Yea sure, merged C++. I don't remember being notified of the PR, must've gotten buried in my inbox.
The issue is with how nvim-treesitter-textsubjects selects whitespace that surrounds the object. The plugin tries to be as smart of possible with whitespace and how it selects it, it also...
Going to close this. I haven't written Kotlin in years and after an undergrad in CS and a few years working with distributed systems I don't think it's unreasonable the...
Try adding `set termguicolors` in your init file.
For lua, you should use `vim.opt.termguicolors=true`. As a general rule of thumb, `vim.opt` is preferred in init files.
> The issue is not present for me with the all those plugins. Perhaps, it was already fixed? Perhaps, it's not actually an nvim-treesitter-endwise error but rather a nvim-treesitter bug....
> I guess this is not possible right now with the current query syntax. But you could write a predicate for it. Have a look at predicates.lua in our repo...
Nevermind, `not-has-type` actually seems to work, I was testing queries with the Rust api but they work in Lua. I'm going to use that, thanks!
One other question. I'm trying to use a wildcard parent but failing. With lua source code: ```lua local M = { 1, 2, 3 } ``` And query: ``` (table...
I'm open to suggestions, but there's no good way to automate `vim.o.background` for the themes which are sourced from the base-16 repo. A heuristic could work, but it'd be brittle....