Closed iacore closed 2 years ago
I think I found the issue, but I can't make the extension work at all after the change. https://github.com/locriacyber/idris-vscode/commit/c0b8541b4014ae3c3c5608610cea1eae845e43e5
Hi, thanks for the issue, I'll look into it as soon as I have time.
Are you using Idris 1 or 2?
Hi, thanks for the issue, I'll look into it as soon as I have time.
Are you using Idris 1 or 2?
Idris 2, as shown in the images above.
I've had a look, I didn't reproduce the /null/ path bug, but I think I know what the problem is. The extension is just a translation layer between the Idris IDE process and VS, and currently it only ever launches a single Idris process. That IDE process needs to be launched in the app directory for the IDE commands to work, so to work with a multi-root workspace it would need to launch multiple processes, one per workspace-folder.
That the logic to get the directory path is assuming a single workspace-folder is definitely a mistake, at the very least it should display an error to the user that it can't currently handle multi-root workspaces. Your change would make it work, but only for the first folder.
For now, I'll document that it doesn't support multi-root workspaces, because the current behaviour is confusing and annoying. Longer term, I think launching multiple client processes could work, but I'm not sure how complicated it would be, so it might take a while.
I have the following workspace with two folders:
You can add a new folder to the current workspace like this
The errors are shown in the "Problems" tab but not in the file editor (no squiggle underlines).
Note that the file path is
/null/...
, which is wrong.