We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If the workspace contains too many files, VSCode will notify user that file system watcher does not work to monitor file changes like the following:
In this case, vscode-R cannot create FileSystemWatcher to watch response.log, globalenv.json and plot.png, so session watcher completely stop working.
FileSystemWatcher
response.log
globalenv.json
plot.png
The instructions to resolve this is described at https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc.
One effective walk-around is to add the following in the settings.json for workspace:
settings.json
"files.watcherExclude": { "**/unnecessary_folder/**": true, "**/.git/objects/**": true, "**/.git/subtree-cache/**": true, "**/node_modules/*/**": true }
where .git, node_modules, and other unnecessary_folder could be ignored to make FileSystemWatcher work again.
.git
node_modules
unnecessary_folder
The text was updated successfully, but these errors were encountered:
This should be fixed by #348 as we don't watch any workspace file now.
Sorry, something went wrong.
No branches or pull requests
If the workspace contains too many files, VSCode will notify user that file system watcher does not work to monitor file changes like the following:
In this case, vscode-R cannot create
FileSystemWatcher
to watchresponse.log
,globalenv.json
andplot.png
, so session watcher completely stop working.The instructions to resolve this is described at https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc.
One effective walk-around is to add the following in the
settings.json
for workspace:where
.git
,node_modules
, and otherunnecessary_folder
could be ignored to makeFileSystemWatcher
work again.The text was updated successfully, but these errors were encountered: