Open skimask9 opened 1 year ago
Did you ever figure out where the "is not accessible by the current user" error comes from?
I'm seeing the same when using the scan_dir from the plenary.nvim library:
"/path/to/journal is not accessible by the current user!"
-- scandir.lua
for i = #base_paths, 1, -1 do
if uv.fs_access(base_paths[i], "X") == false then
if not F.if_nil(opts.silent, false, opts.silent) then
print(string.format("%s is not accessible by the current user!", base_paths[i]))
end
table.remove(base_paths, i)
end
end
Not sure why it happens
SOLVED: in my case it was a wrong path
get_current_venv doesn't work at all pick_venv failed with the error "venvs is not accessible by the current user!"