master #1

Open
oli wants to merge 912 commits from master into lua
Showing only changes of commit a64aeb9dd6 - Show all commits

View File

@@ -45,7 +45,7 @@ end
local function getPythonEnv() local function getPythonEnv()
local venv = os.getenv("VIRTUAL_ENV") local venv = os.getenv("VIRTUAL_ENV")
if venv ~= nil then if venv ~= nil then
return string.format("%s\\bin\\python.exe", venv) return string.format("%s/%s", venv, getVenvSuffix())
end end
local cwd = vim.fn.getcwd() local cwd = vim.fn.getcwd()