Description: The extension does not currently work with VS Code Insiders because the paths to the workbench.html file are different from the standard VS Code release. Please add /out/vs/code/electron-browser/workbench.html to the list of possible paths to allow compatibility with VS Code Insiders.
const possiblePaths = [
'out/vs/code/electron-sandbox/workbench/workbench.html',
'out/vs/code/electron-sandbox/workbench/workbench.esm.html', // Another possible path
];
should be:
const possiblePaths = [
'out/vs/code/electron-sandbox/workbench/workbench.html',
'out/vs/code/electron-sandbox/workbench/workbench.esm.html', // Another possible path
'out/vs/code/electron-browser/workbench.html' // Possible Path for Vscode Insiders
];
Preferably there should be a fallback that open the editor's root directory and allows for manual selection of the workspace.html file
Steps to Reproduce:
Install VS Code Insiders.
Install the VS-Code-Modernized extension.
Observe that the extension does not function due to missing or incompatible paths.
Expected Behavior: The extension should support VS Code Insiders by recognizing and working with the additional path \out\vs\code\electron-browser\workbench.
Description: The extension does not currently work with VS Code Insiders because the paths to the workbench.html file are different from the standard VS Code release. Please add
/out/vs/code/electron-browser/workbench.htmlto the list of possible paths to allow compatibility with VS Code Insiders.should be:
Preferably there should be a fallback that open the editor's root directory and allows for manual selection of the workspace.html file
Steps to Reproduce:
Expected Behavior: The extension should support VS Code Insiders by recognizing and working with the additional path \out\vs\code\electron-browser\workbench.