-
-
Notifications
You must be signed in to change notification settings - Fork 350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Weird issue with require #452
Comments
Please show me the log, see https://github.com/sumneko/lua-language-server/wiki/Default-log-path |
I posted the logs here. (For protocol: I did replaced all occurences of my home directory (
Allmost at the end of the log. |
It seems that the file search failed. A known problem is that if there is a soft link in your directory, I will get into an endless loop and may ignore the entire directory. Please modify the code manually to check if an exception is thrown in these two places: I can reply you tomorrow |
I checked and couldn't find any soft links inside my project, nor inside my library. The only link I'm using is to reference my project to another location, so it can be used there and edited in my projects folder, but this link is not inside my project. |
So i modified the code to the following: type = function (path)
local result
local ok, err = pcall(function ()
if fs.is_directory(fs.path(path)) then
result = 'directory'
else
result = 'file'
end
end)
if not ok then
log.error("pcall 1 failure", err)
else
log.info("pcall 1 success")
end
return result
end,
list = function (path)
local fullPath = fs.path(path)
if not fs.exists(fullPath) then
return nil
end
local paths = {}
local ok, err = pcall(function ()
for fullpath in fullPath:list_directory() do
paths[#paths+1] = fullpath:string()
end
end)
if not ok then
log.error("pcall 2 failure", err)
else
log.info("pcall 2 success")
end
return paths
end Here is my resulting log file.
EDIT: |
From your log, the file |
Okay, so I thought ignoreDir uses paths relative to working directory, not to any path. I wanted to ignore Test process:
|
Here is a bug in parsing gitignore. You have the following in your gitignore:
My handling of the content was wrong, which caused the entire directory to be ignored. |
Ah yes, I forgot, that I used this feature. My program is creating a lot of directories and files, which shouldn't be version controlled, that's why I ignored everything und unignored (is there a word for that?) only where my files are going. I tried to remove P.S. What do you think about installing docs locally and ignoring them in |
Here is a setting |
Describe the bug
Sometimes, when i work on a project for a longer time, the language server seems to forget require paths in my current workspace.
Consider this file structure (mine is larger) :
when I open vscode with no file opened and then open
complicated.lua
, file won't get any hints. However if i openfile.lua
and then go back incomplicated.lua
it suddenly knows its existence and then shows all hints again.To Reproduce
Thats the problem, I don't know how to reproduce this problem, since all attempts failed and the server could resolve any path. I tried to delete
~/.config/Code/User/workspaceStorage
to delete any malformed caches, but the problem seems to persist. Whenever I need autocompletion for a specific file, first i need to open that file.Environment (please complete the following information):
Any ideas what could cause that problem?
The text was updated successfully, but these errors were encountered: