Skip to content

Commit

Permalink
Enable new lua proxy for pdb #194
Browse files Browse the repository at this point in the history
  • Loading branch information
sakhnik committed Aug 1, 2023
1 parent cc81921 commit 9c8dcf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/nvimgdb/backend/pdb.lua
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ end
---@return string[] command to launch the debugger with termopen()
function C.get_launch_cmd(client_cmd, tmp_dir, proxy_addr)
local _ = tmp_dir
local cmd = {"python", utils.get_plugin_file_path('lib', 'proxy', 'pdb.py'), '-a', proxy_addr}
local cmd = {'nvim', '--clean', '-u', 'NONE', '-l', utils.get_plugin_file_path('lib', 'proxy', 'base.lua'), '-a', proxy_addr}
-- Append the rest of arguments
for i = 1, #client_cmd do
cmd[#cmd + 1] = client_cmd[i]
Expand Down

0 comments on commit 9c8dcf1

Please sign in to comment.