Is it only me, or is the recent VS Code's fs watcher kinda broken?
Many times, the Git status doesn't update until I do a manual refresh. Even changes to files made by scripts don't get updated in the editor unless I close it and reopen it.
Extension conflicts or something in the editor itself?
Many times, the Git status doesn't update until I do a manual refresh. Even changes to files made by scripts don't get updated in the editor unless I close it and reopen it.
Extension conflicts or something in the editor itself?
Comments
Restating vscode gets it back but appears again after a while
"typescript.tsserver.experimental.useVsCodeWatcher": false
and see if it due to TS requesting watchers from the editor (this is a new future)
"typescript.tsserver.watchOptions": {
"watchFile": "dynamicPriorityPolling"
}
Not sure why tsserver should impact git file watching.