We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ecb08 commit 37b4cbaCopy full SHA for 37b4cba
1 file changed
lua/dap-python.lua
@@ -139,7 +139,7 @@ end
139
---@param opts SetupOpts|nil See |dap-python.SetupOpts|
140
function M.setup(adapter_python_path, opts)
141
local dap = load_dap()
142
- adapter_python_path = adapter_python_path and vim.fn.expand(vim.fn.trim(adapter_python_path)) or 'python3'
+ adapter_python_path = adapter_python_path and vim.fn.expand(vim.fn.trim(adapter_python_path), true) or 'python3'
143
opts = vim.tbl_extend('keep', opts or {}, default_setup_opts)
144
dap.adapters.python = function(cb, config)
145
if config.request == 'attach' then
0 commit comments