Skip to content

Commit

Permalink
fix(neotest): add required nvim-nio to test and dap extra (neotest an…
Browse files Browse the repository at this point in the history
…d nvim-dap-ui respectively) (LazyVim#2763)

* Adding required nvim-nio to neotest in test-core

neotest now requires nvim-neotest/nvim-nio to be
installed as per BREAKING CHANGE: nvim-neotest/neotest#337

* Adding nvim-nio as dependency

nvim-dap-ui now requires  nvim-neotest/nvim-nio as a dependency as of recent changes
  • Loading branch information
Aietes authored and Andreas Gerlach committed Mar 20, 2024
1 parent c741834 commit 2b987c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lua/lazyvim/plugins/extras/dap/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ return {
-- fancy UI for the debugger
{
"rcarriga/nvim-dap-ui",
dependencies = { "nvim-neotest/nvim-nio" },
-- stylua: ignore
keys = {
{ "<leader>du", function() require("dapui").toggle({ }) end, desc = "Dap UI" },
Expand Down
1 change: 1 addition & 0 deletions lua/lazyvim/plugins/extras/test/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ return {
},
{
"nvim-neotest/neotest",
dependencies = { "nvim-neotest/nvim-nio" },
opts = {
-- Can be a list of adapters like what neotest expects,
-- or a list of adapter names,
Expand Down

0 comments on commit 2b987c0

Please sign in to comment.