Misplaced globalStorageHome
See original GitHub issueA globalStorageHome
directory is created in the project root when I use the VSCodeVim extension.
> tree globalStorageHome/
globalStorageHome/
└── vscodevim.vim
The VSCodeVim extension uses context.globalStoragePath
to determine storage location. Did code-server misconfigure this location to be in the project root?
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Misplaced globalStorageHome #1551 - coder/code-server
I spun up a 3.5.0 Docker image and when I use the vim extension and do something like :w it creates the global...
Read more >React-Redux state lost after refresh - Stack Overflow
I already have a token saved on my local storage and everything seemed to work fine until I refreshed the page. When I...
Read more >difference between write and modify access? - IBM Community
when i read, write, change, and delete files and subfolders. In addition, i lost the permissions settings for all files and subdirectories.
Read more >HTML Web Storage API - W3Schools
sessionStorage - stores data for one session (data is lost when the browser tab is closed). Before using web storage, check browser support...
Read more >Global Storage Settings Panel Options Greyed Out - Adobe Support ...
One of the first things I checked was to make sure that the SYSTEM account had full permissions to the %APPDATA% folder and...
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
Ah yeah I think I see the problem. vim runs in the browser and VS Code’s worker extension host isn’t capable of using the
globalStorageHome
value provided by the environment service yet, so we’ll just have to patch that support in.Ahh I see! I opened a new issue for this: https://github.com/cdr/code-server/issues/2093