Lewis Russell
Lewis Russell
Can I ask an example(s) of _typical writing habits_ you wish to support? My suggestion works up your suggestion by defining a base table that acts as a definition of...
Would it be unreasonable for `d` to be required to be a field with `@field` for `@exact` classes? If not, the benefits of this feature are reduced since it won't...
I'm pretty sure contexts aren't drawn at the bottom of the window. Only one window is opened. Are you sure it is this plugin?
But the issue report indicates the floating window is at the bottom of the window, which it shouldn't be.
That's not what the OP indicates in the screenshots. Rather than speculating we need the OP to clarify, otherwise I'll just close this issue. If you've got fixes you want...
I don't know if you've seen this but I think we should do https://github.com/neovim/neovim/issues/32287#issuecomment-2835155023 instead of adding a new field as that will solve more use cases.
Anything that includes a function for the merge behaviour will mean the config itself won't be static since that function can outright ignore the previous and new value. The only...
@tampueroc you may just need to add explicit `@type` annotations for the lint failures.
> For files currently opened in a buffer we could do the rename detection even implicitly via the change tracking mechanism. Just to mention that Gitsigns does rename detection since...
You can throttle to a limit manually without much work ```lua local function pop(tasks, n) local r = {} for i = 1, n do table.insert(r, table.remove(tasks, 1) end return...