fix(neotest): add required nvim-nio to test and dap extra (neotest and nvim-dap-ui respectively) (#2763)
* Adding required nvim-nio to neotest in test-core neotest now requires nvim-neotest/nvim-nio to be installed as per BREAKING CHANGE: https://github.com/nvim-neotest/neotest/pull/337 * Adding nvim-nio as dependency nvim-dap-ui now requires nvim-neotest/nvim-nio as a dependency as of recent changes
This commit is contained in:
@ -18,6 +18,7 @@ return {
|
|||||||
-- fancy UI for the debugger
|
-- fancy UI for the debugger
|
||||||
{
|
{
|
||||||
"rcarriga/nvim-dap-ui",
|
"rcarriga/nvim-dap-ui",
|
||||||
|
dependencies = { "nvim-neotest/nvim-nio" },
|
||||||
-- stylua: ignore
|
-- stylua: ignore
|
||||||
keys = {
|
keys = {
|
||||||
{ "<leader>du", function() require("dapui").toggle({ }) end, desc = "Dap UI" },
|
{ "<leader>du", function() require("dapui").toggle({ }) end, desc = "Dap UI" },
|
||||||
|
@ -10,6 +10,7 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"nvim-neotest/neotest",
|
"nvim-neotest/neotest",
|
||||||
|
dependencies = { "nvim-neotest/nvim-nio" },
|
||||||
opts = {
|
opts = {
|
||||||
-- Can be a list of adapters like what neotest expects,
|
-- Can be a list of adapters like what neotest expects,
|
||||||
-- or a list of adapter names,
|
-- or a list of adapter names,
|
||||||
|
Reference in New Issue
Block a user