People get an error when opening a file in Visual Studio code when using OmniPascal :

Ordner nicht angegeben
which corresponds to:
No folder specified
The first thought is to provide paths in user.json settings:
objectpascal.delphiInstallationPathobjectpascal.objectpascal.searchPath
It would, of course, be the wrong tree to bark:
settings.json
// Place your settings in this file to overwrite the default settings { "objectpascal.delphiInstallationPath": "D:\\Programs\\Embarcadero\\Studio\\14.0", "objectpascal.searchPath": "D:\\Delphi Components" }
The error certainly comes from OmniPascal, as this is a line inside
Bin \ win \ OmniPascalServer.exe

I'm not the only person to get this
Anonymous has the same problem:
When I open the .pas file by right-clicking on the file in Windows Explorer, the file opens correctly, but then a messagedialog message appears with "Ordner nicht angegeben" and the OK button.
Is there any way to debug the code?
I see inside VSCode there is a variable in the root path of the workspace:
objectPascalServiceClient.js
var config = vscode.workspace.getConfiguration('objectpascal'); var delphiSDK = config.get('delphiInstallationPath', ''); var searchPath = config.get('searchPath', ''); var workspacePath = vscode.workspace.rootPath; if (typeof delphiSDK == 'undefined') delphiSDK = ""; if (typeof searchPath == 'undefined') searchPath = ""; if (isWin) { childProcess = cp.spawn(path.join(__dirname, 'bin/win/OmniPascalServer.exe'), [workspacePath, delphiSDK, searchPath]); }
Is there any source code?
OmniPascal seems to be giving up on software. Is there source code where someone can try to decrypt accurately?
The real question is how to get rid of the modal dialog that blocks the use of the window.