Skip to content

Commit

Permalink
fix: Use integratedTerminal for Python and CodeLLDB (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
LennyPhoenix authored Dec 21, 2023
1 parent 5b4db7c commit 9e82ded
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lua/mason-nvim-dap/mappings/configurations.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ M.python = {
pythonPath = venv_path
and ((vim.fn.has('win32') == 1 and venv_path .. '/Scripts/python') or venv_path .. '/bin/python')
or nil,
console = 'integratedTerminal',
},
}

Expand All @@ -80,6 +81,7 @@ M.codelldb = {
cwd = '${workspaceFolder}',
stopOnEntry = false,
args = {},
console = 'integratedTerminal',
},
}

Expand Down

0 comments on commit 9e82ded

Please sign in to comment.