Visual Studio Code 無法監視這個大型工作區的變化 Visual Studio Code is unable to watch for file changes in this large workspace(error ENOSPC)
解決辦法
查看目前工作區最大監控數量
cat /proc/sys/fs/inotify/max_user_watches
編輯系統檔
code /etc/sysctl.conf
在最下方新增一行
fs.inotify.max_user_watches=524288
最後 terminal 輸入
sudo sysctl -p
更改完成,正常使用