Skip to content

Commit

Permalink
feat(dap): Change DAP REPL binding from open to toggle (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
albertfgu committed Apr 22, 2023
1 parent 6c86952 commit 3a718c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazyvim/plugins/extras/dap/core.lua
Expand Up @@ -82,7 +82,7 @@ return {
{ "<leader>do", function() require("dap").step_out() end, desc = "Step Out" },
{ "<leader>dO", function() require("dap").step_over() end, desc = "Step Over" },
{ "<leader>dp", function() require("dap").pause() end, desc = "Pause" },
{ "<leader>dr", function() require("dap").repl.open() end, desc = "Repl" },
{ "<leader>dr", function() require("dap").repl.toggle() end, desc = "Toggle REPL" },
{ "<leader>ds", function() require("dap").session() end, desc = "Session" },
{ "<leader>dt", function() require("dap").terminate() end, desc = "Terminate" },
{ "<leader>dw", function() require("dap.ui.widgets").hover() end, desc = "Widgets" },
Expand Down

0 comments on commit 3a718c5

Please sign in to comment.