Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Fixed missing 'opts' param in keybinding
Browse files Browse the repository at this point in the history
  • Loading branch information
bavalpey authored and NTBBloodbath committed Nov 5, 2021
1 parent 53081f3 commit 55708e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/doom/extras/keybindings/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ utils.map(
utils.map(
"n",
"<leader>cdc",
"<cmd>lua require('dap').toggle_breakpoint()<CR>",
"<cmd>lua require('dap').continue()<CR>",
opts,
"DAP",
"dap_continue",
Expand All @@ -1073,6 +1073,7 @@ utils.map(
"n",
"<leader>cdd",
"<cmd>lua require('dap').disconnect()",
opts,
"DAP",
"dap_disconnect",
"End debugging session"
Expand Down

0 comments on commit 55708e9

Please sign in to comment.