rstewart8
rstewart8

Reputation: 99

sublimetext slow sync remote -> local

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

Upvotes: 5

Views: 3519

Answers (1)

Manuel Arwed Schmidt
Manuel Arwed Schmidt

Reputation: 3596

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.

Upvotes: 4

Related Questions