Exclude folder in Sublime SFTP and skip scan

I am using yoman to scaffold an angular project. In this folder, there is a folder named node_modules. I excluded the folder in regexes ignore. But it seems like Sublime SFTP is still browsing it.

What I want to do is exclude the folder even for scanning. It only takes an hour before the scan is done.

"ignore_regexes": [
    "\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json",
    "sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git/",
    "\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini", "/var/www/webapp/node_modules/"

      

+3


source to share





All Articles