Hardcoded `vscode-vfs` dependency
See original GitHub issueIn some places:
Should imho not hardcode because it originates from an extension. Can rather use IPathService.defaultUriScheme
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Virtual Workspaces | Visual Studio Code Extension API
Run your extension against a virtual workspace. Install the GitHub Repositories extension and run the Open GitHub Repository... command from the Command Palette ......
Read more >Remote Repositories extension for Visual Studio Code
Remotely browse and edit a source control repository from within Visual Studio Code.
Read more >Managing Java Projects in VS Code
Lightweight Mode, Maven Support, Java Package and Dependency Management in Visual Studio Code.
Read more >Supporting Remote Development and GitHub Codespaces
A guide to adding Visual Studio Code Remote Development and GitHub ... Extension dependencies work fine when all the extensions are running locally...
Read more >Source Control with Git in Visual Studio Code
Tip: You can open VS Code in a sub-directory of a Git repository. VS Code's Git services will still work as usual, showing...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
That’s in an extension which doesn’t have access to
IPathService
. We could check the first workspace folder’s URI scheme (if it is not an empty window).our hardcoding is actually a workaround for not having any api for this, but we also do not have a major reason to generalize the API at this time. suggestions welcome