Benjamin Pasero
Benjamin Pasero
I am updating the title to also include sidebar views, so that in general you are able to move views around to auxiliary windows.
Can you try to reproduce with our nightly insider builds? You can give our preview releases a try from: https://code.visualstudio.com/insiders/
Are people able to get rid of this error when they increase the `application.shellEnvironmentResolutionTimeout` setting to a higher value? For the `1.101` release we pushed support for resolving environment variables...
Please see if you can find any logged output that could help us find the source of the issue: * run `code --verbose` from the command line * reproduce the...
To me this sounds to be an issue with Dev Drive and/or its file system implementation. VS Code is relying on node.js for file operations which basically delegates to standard...
> I am beginning to suspect VS's file system watcher is somehow interfering with VSCode saving the file. If you configure a pattern of `**` in `files.watcherExclude`, all file watching...
@brycehutchings truncating the file before writing it is the pragmatic approach to satisfy most edit operations that are often not just "append at the end of the file" or "replace...
We have specific code for Windows to separate the `truncate` from the write operation and it indicates the issues this addresses: https://github.com/microsoft/vscode/blob/6e42cd0eff31bf1c78db25da035dd1964d55cb99/src/vs/platform/files/node/diskFileSystemProvider.ts#L369-L385 Specifically: * https://github.com/microsoft/vscode/issues/931 * https://github.com/microsoft/vscode/issues/6363 Re-using the same...
I have https://github.com/microsoft/vscode/pull/231653 now, happy for some feedback. Essentially instead of: * `fs.truncate(path)` * `const fd = fs.open(path, 'r+')` * use the `fd` for writing We now do: * `const...
@brycehutchings @pabermod I have an insider build ready with my change and would like to hear back from you if it changes your experience. You can just run it from...