saecki / crates.nvim

A neovim plugin that helps managing crates.io dependencies
MIT License
860 stars 29 forks source link

Feature request: `[` `]` movement to crates that need upgraded #27

Closed lmburns closed 2 years ago

lmburns commented 2 years ago

It would be nice to have some sort of a movement command that can be mapped to something like [c and ]c which could move to the previous/next crate that needs to be upgraded

saecki commented 2 years ago

We use the neovim diagnostic api, so you can use vim.diagnostic.goto_next() and vim.diagnostic.goto_prev() if that's enough.

lmburns commented 2 years ago

Oh, I see now. I have only configured the builtin LSP a little bit and still use coc.nvim. I am still able to use these mappings, so this is good enough. Thank you