Timing with panel open: 19.86s Timing with panel closed: 4.60s
I filed an issue at https://github.com/microsoft/vscode/issues/160118
1–7 of 7 posts
Timing with panel open: 19.86s Timing with panel closed: 4.60s
I filed an issue at https://github.com/microsoft/vscode/issues/160118
Wondering if anyone else can confirm faster builds with it hidden?
My initial instinct: are your build artifacts indexed by the git plugin? Try git ignoring everything not relevant.
My initial instinct: are your build artifacts indexed by the git plugin? Try git ignoring everything not relevant.
How would that change with the state of the in-editor panel?
My initial instinct: are your build artifacts indexed by the git plugin? Try git ignoring everything not relevant.
Earlier quoted context omitted.
How would that change with the state of the in-editor panel?
Panel gets removed from DOM it unhooks the event handlers for showing the real-time status of git meaning they don't have fire at all. It's common for web apps to slow down when certain UI element react to an event that is emmited (much) faster then the UI can handle.