Sublime Forum

SFTP - disable automatic syncing

#1

I just synced from remote to local, and when I open a file from the project, output pane pops asking me if I want to sync as files does not have same timestamps (they differ always in 3min for whatever reason), i.e.:

...
Download remote "worker.py" (3 minute newer) over local "worker.py" [4:59am 8/22/16 vs. 4:56am 8/22/16]

But I just synched whole project (and no one works on remote except me).

How can I disable this automatic syncing, so that I can sync only on demand?

FYI, time is same on remote and local.

0 Likes

#2

Open up your sftp-config.json file for that project and change the settings at the top of the file to something like these:

"save_before_upload": true, "upload_on_save": false, "sync_down_on_open": false, "confirm_downloads": true, "confirm_sync": true, "confirm_overwrite_newer": true,

This should set you up so that you have to manually sync.

2 Likes