aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-04-02 14:52:38 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-04-02 14:52:38 -0500
commit6ace3fbf847c58a2f463ce41b9f128f8615c087b (patch)
treec009648807dd1eab691b54f2ea3c28056075a3f5
parente334af6a96bd5154c5a967f7b84c44d36fa33b76 (diff)
fix(nvim): fix typo in command description
-rw-r--r--nvim/.config/nvim/lua/plugins/neotest.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/.config/nvim/lua/plugins/neotest.lua b/nvim/.config/nvim/lua/plugins/neotest.lua
index 98120ec..0a68655 100644
--- a/nvim/.config/nvim/lua/plugins/neotest.lua
+++ b/nvim/.config/nvim/lua/plugins/neotest.lua
@@ -27,7 +27,7 @@ function M:init()
end, { desc = "run nearest test" })
vim.keymap.set("n", "<leader>td", function()
require("neotest").run.run({ suite = false, strategy = "dap" })
- end, { desc = "run nearest test" })
+ end, { desc = "debug nearest test" })
end
return M