Skip to content

Commit

Permalink
feat(dap): use integrated terminal for lldb-dap by default (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
adonis0147 authored Sep 10, 2024
1 parent c968ee2 commit c3729ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lua/rustaceanvim/config/internal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ local function load_dap_configuration(type)
request = 'launch',
stopOnEntry = false,
}
if type == 'lldb' then
dap_config.runInTerminal = true
end
---@diagnostic disable-next-line: different-requires
local dap = require('dap')
-- Load configurations from a `launch.json`.
Expand Down

0 comments on commit c3729ed

Please sign in to comment.