We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9cbd12 commit bdba2ebCopy full SHA for bdba2eb
1 file changed
lua/CopilotChat/health.lua
@@ -24,7 +24,8 @@ end
24
--- Run a python command and handle potential errors
25
---@param command string
26
local function run_python_command(command)
27
- return run_command_on_executable('python3', command)
+ local python3_host_prog = vim.g["python3_host_prog"]
28
+ return run_command_on_executable(python3_host_prog or 'python3', command)
29
end
30
31
-- Add health check for python3 and pynvim
0 commit comments