-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
Workspace UI storage not picked up when launching workspace with different casing #1162
Comments
There is still an issue with how we handle files in the workbench: Since the workbench is treating files with different casing as individual files, you end up having potentially the same file open twice. The road to solve this is to make the workbench fully agnostic of file path casing which is a larger task. |
With the update to Electron 1.2.6, |
This landed. To verify: start VS Code from the command line 2 times after each other, once from a directory that has the real casing as it is on disk and once with different casing. In both cases you should get the view state restored from the first launch, even though the paths are different. |
Reopening because it looks like node.js 6.4.0 will revert the nice fs.realpath to go back to the previous JS implementation and behaviour. |
Merging into #12448 |
Currently we loose all workspace associated state when the workspace path is using different casing. Ideally the storage is agnostic to casing for file systems that are case insensitive.
The text was updated successfully, but these errors were encountered: