Mika Vilpas
Mika Vilpas
Looks like a new parser for groovy was merged around two (2) months ago https://github.com/nvim-treesitter/nvim-treesitter/pull/5957 To activate it, maybe adding it to `ensure_installed` would be enough. (this will only address...
Hi, to use it you need to configure it as a keyboard or input source. In my Samsung s9 it's easily done by pressing the keyboard icon that pops up...
Just noticed this, and I think it looks nice. I like this project, kinda wish I had seen it before. I have been using yazi with neovim and also developing...
An algorithm that worked a little bit better: ```lua vim.keymap.set("v", "J", ":m '>+1gv=gv", { desc = "Move line down", silent = true }) vim.keymap.set("v", "K", ":m '
Looks like the build is now failing because of the rule I added. Ahem, this was totally intentional as it also serves as a demo 😄
Sounds exciting! I would say let's keep this open as a draft since there isn't that much code. Once the new ideas stabilize somewhat, we can take a new look...
I could reproduce the issue locally on osx with node 20.9.0. I could not resolve it, and was not able to find out why this might have happened. However, I...
I'm not familiar with vitest, so it's a bit difficult to say what the cause of this could be. I suppose it _may_ have something to do with https://github.com/GregRos/parjs/issues/39 ....
Not sure if I want to go all the way to type level testing yet. Currently the cases should be somewhat nicely covered by using explicit type annotations.
I think that is a good idea. It could simplify these tricky cases under a single "right way" to do things. In general I think instance methods are also a...