Skip to content

Commit

Permalink
Remove DapLoadLaunchJSON user command
Browse files Browse the repository at this point in the history
With the new config provider model the files are read implicitly
on-demand.
  • Loading branch information
mfussenegger committed Dec 5, 2024
1 parent 02a9474 commit ab55b6c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion plugin/dap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ cmd('DapStepInto', function() require('dap').step_into() end, { nargs = 0 })
cmd('DapStepOut', function() require('dap').step_out() end, { nargs = 0 })
cmd('DapTerminate', function() require('dap').terminate() end, { nargs = 0 })
cmd('DapDisconnect', function() require('dap').disconnect({ terminateDebuggee = false }) end, { nargs = 0 })
cmd('DapLoadLaunchJSON', function() require('dap.ext.vscode').load_launchjs() end, { nargs = 0 })
cmd('DapRestartFrame', function() require('dap').restart_frame() end, { nargs = 0 })

local function dapnew(args)
Expand Down

0 comments on commit ab55b6c

Please sign in to comment.