nvim: Fix crash on no python venv available
This commit is contained in:
parent
fa1db974f0
commit
fae2d85cca
1 changed files with 2 additions and 1 deletions
|
@ -33,7 +33,8 @@ local function path_join(...)
|
|||
return table.concat(vim.tbl_flatten({ ... }), "/")
|
||||
end
|
||||
function T.set_python_env(workspace)
|
||||
local base = vim.fn.expand(require("core.util").get_python_venv_basefolder(workspace))
|
||||
local base = require("core.util").get_python_venv_basefolder(workspace)
|
||||
base = vim.fn.expand(base)
|
||||
local p = vim.env.PATH or ""
|
||||
if not base then
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue