Skip to content
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

workspaceFolder path issue under Windows #26

Open
eymeric-giraux opened this issue May 2, 2023 · 1 comment
Open

workspaceFolder path issue under Windows #26

eymeric-giraux opened this issue May 2, 2023 · 1 comment

Comments

@eymeric-giraux
Copy link

Under Windows, it seems that the path using ${workspaceFolder}/ generates an issue.
See below.

grafik

The problem is solved when using relative path.

@HughG
Copy link

HughG commented May 15, 2023

Yep, I've just been hit by this, too. Extension version 0.2.1, VSCode version 1.78.2.

To clarify the workaround by @eymeric-giraux, I solved the problem by using the following settings.

{
    "sphinx-needs.needsJson": "build/needs/needs.json",
    "sphinx-needs.srcDir": "source"
}

BUT doing this makes the "Sphinx-Needs Explorer" view go "blank", whereas if I put

{
    "sphinx-needs.needsJson": "${workspaceFolder}/build/needs/needs.json",
    "sphinx-needs.srcDir": "${workspaceFolder}/source"
}

then the explorer view works, but the above error appears and auto-complete, etc., don't work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants