Sublimetext slow sync & # 8594; local

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

+3
source share
1 answer

The only way to speed up synchronization is to set options ignore_regexesto exclude large folders that will not be edited (for example, 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 may need to be relative to the root path of your server.

+2
source

All Articles