diff --git a/src/packages/_neovim_lua/keybinds.lua b/src/packages/_neovim_lua/keybinds.lua index 36a7f96..2cd990f 100644 --- a/src/packages/_neovim_lua/keybinds.lua +++ b/src/packages/_neovim_lua/keybinds.lua @@ -40,6 +40,8 @@ wk.add({ { 'ts', function() neotest.summary.toggle() end, desc = 'Toggle summary' }, { 'tt', function() neotest.run.run() end, desc = 'Run nearest test' }, { 'tw', function() neotest.watch.toggle(vim.fn.expand('%')) end, desc = 'Watch tests in file' }, + { 'ta', function() neotest.run.attach() end, desc = 'Attach to running test' }, + { 'tl', function() neotest.run.run_last() end, desc = 'Run last test' }, }) -- Language Server