Skip to content

Commit

Permalink
nvim(dap): fix gdb adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
FredeEB committed May 20, 2024
1 parent 49c78c0 commit c744d50
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions configs/nvim/after/plugin/dap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,8 @@ dap.adapters.codelldb = {
dap.adapters.gdb = {
id = 'gdb',
type = 'executable',
executable = {
command = 'gdb',
args = { '-i', 'dap' },
},
command = 'gdb',
args = { '-i', 'dap' },
}

dap.adapters.nlua = function(callback, config)
Expand Down

0 comments on commit c744d50

Please sign in to comment.