Skip to content

Commit

Permalink
fix(neotest): removed <leader>tR in favor of <leader>tt
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed May 28, 2023
1 parent 5c97e0c commit a866c68
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lua/lazyvim/plugins/extras/test/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ return {
{ "<leader>tt", function() require("neotest").run.run(vim.fn.expand("%")) end, desc = "Run File" },
{ "<leader>tT", function() require("neotest").run.run(vim.loop.cwd()) end, desc = "Run All Test Files" },
{ "<leader>tr", function() require("neotest").run.run() end, desc = "Run Nearest" },
{ "<leader>tR", function() require("neotest").run.run(vim.fn.expand("%")) end, desc = "Run File" },
{ "<leader>ts", function() require("neotest").summary.toggle() end, desc = "Toggle Summary" },
{ "<leader>to", function() require("neotest").output.open({ enter = true, auto_close = true }) end, desc = "Show Output" },
{ "<leader>tO", function() require("neotest").output_panel.toggle() end, desc = "Toggle Output Panel" },
Expand Down

0 comments on commit a866c68

Please sign in to comment.