Source: https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc Steps: 1. Modify `/etc/sysctl.conf` by adding the following to the end of the file. ``` fs.inotify.max_user_watches = 524288 ``` 2. Run `sudo sysctl -p` to update the kernel module.
Source: https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc
Steps:
Modify
/etc/sysctl.confby adding the following to the end of the file.Run
sudo sysctl -pto update the kernel module.