sublimetext slow sync remote -> local

sftp, sublimetext3

Solution

The only way to speed synchronization up seems to be the set the `ignore_regexes` options to exclude large folders that won't be edited (e.g. libary folders).

You can exclude folders by setting something like this:

"ignore_regexes": [
        /* leave default rules*/
        "/var/www/someFolderLike/Lib/Zend/",
        "/var/www/anotherFolder/",
]

Folder paths might need to be relative to your server root path.

Problem

I am using sublimetext3 text editor and linked my local to a remote server. When the code is changed on the remote and I sync it, it takes a long time to sync. Is there a way to speed this up? Thanks

Original source