Skip to content

feat:Support for VS Code Insiders #2

Description

@0x3at

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions