Ruby debugging support (#969)

* Ruby debugging support

* add comment for ruby debugging requirements
This commit is contained in:
Abouzar Parvan 2021-07-17 11:04:29 +04:30 committed by GitHub
parent 47ede1e2c2
commit 7f978fd2d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,8 +62,11 @@ M.lsp = function()
end
M.dap = function()
-- TODO: implement dap
return "No DAP configured!"
-- gem install readapt ruby-debug-ide
if O.plugin.dap.active then
local dap_install = require "dap-install"
dap_install.config("ruby_vsc_dbg", {})
end
end
return M