Eric Haynes
Eric Haynes
For anyone who needs a workaround until this is released, this works and is typesafe. There are similar problems with `ajv-errors` and `ajv-formats`, and those haven't been published in forever....
I can all but guarantee that this is due to the use of `api.nvim_get_current_buf()`. When you create an autocmd, the `callback` function receives an object parameter, and when the event...
FWIW, this is working perfectly for me: ``` ## Checking for required plugins - OK: plenary installed. - OK: nvim-treesitter installed. ## Checking external dependencies - OK: rg: found ripgrep...
LGTM: ``` ## Checking for required plugins - OK: plenary installed. - OK: nvim-treesitter installed. ## Checking external dependencies - OK: rg: found ripgrep 13.0.0 - OK: fd: found fd...
Not to split hairs, but this isn't about a lack of boundaries between packages. The entire concept of a monorepo is predicated on there being a relationship between packages and...
Also occurs with: ``` :lua print(vim.inspect(vim.fs.find('lib', { path = '/usr/', upward = true, type = 'directory' }))) ``` ``` { "/usr//lib" } ```
I can open a new issue, but it would also be nice to be able to do it on a per-buffer basis, the immediate case I can think of is...
Yeah, for example if you accidentally select a large compiled `.js` file in a telescope, you end up with eslint instances pegged at 100% cpu that don't properly shut down...
Gotcha. Sorry to hijack. Thanks!
This seem to solve it for me: https://sathia27.github.io/posts/2021/08/19/rust-cargo-resolve-authentication-issue.html ``` ➜ eval `ssh-agent -s` Agent pid 27236 ➜ ssh-add Identity added: /Users/sathia/.ssh/id_rsa ➜ uzhaippu git:(master) ✗ cargo build ``` While this...