From 3b712d3da1c8245dc7f2b63b4ddc54dccedd26cc Mon Sep 17 00:00:00 2001 From: Steve Huff Date: Tue, 28 Apr 2026 16:27:42 -0400 Subject: [PATCH] fix(dev-tools-nvim): capture new dependency on async Per ThePrimeagen/refactoring.nvim#519, which announces a major rewrite, `plenary.nvim` is no longer a dependency (which is good because that library is apparently no longer maintained?), but now there's a dependency on lewis6991/async.nvim. The community recipe in `editing-support` has captured this update, but since I had configured this recipe but not the `editing-support` recipe, I got a storm of tracebacks complaining about a missing `async()` method. --- lua/astrocommunity/lsp/dev-tools-nvim/init.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/astrocommunity/lsp/dev-tools-nvim/init.lua b/lua/astrocommunity/lsp/dev-tools-nvim/init.lua index ef0998e9a..c8a33574c 100644 --- a/lua/astrocommunity/lsp/dev-tools-nvim/init.lua +++ b/lua/astrocommunity/lsp/dev-tools-nvim/init.lua @@ -14,7 +14,10 @@ return { }, { "ThePrimeagen/refactoring.nvim", - dependencies = { "nvim-lua/plenary.nvim" }, + dependencies = { + "lewis6991/async.nvim", + }, + lazy = false, }, }, opts = {