SimpleSync
Sublime Text plugin that automatically syncs files to a remote server via SCP/SSH on save. Perfect for syncing local development to a remote machine.
Details
Installs
- Total 3K
- Win 1K
- Mac 1K
- Linux 485
| Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
SimpleSync
Automatically uploads files on save to a remote host via SCP/SSH. The idea is that you can have a repo locally and remotely (dev machine). It is your responsibility to keep the repos in sync (git pull/push etc).
Installation
- Clone or copy this repository into your
Packages/folder. - Edit settings in Sublime: Preferences → Package Settings → SimpleSync → Settings
Settings
| Setting | Required | Description |
|---|---|---|
enabled |
Enable/disable the plugin (default: true) |
|
remote_user |
Y | Remote SSH username |
remote_host |
Y | Remote host address |
local_folder |
Y | Local base directory path i.e. /home/user1/work/ |
remote_folder |
Y | Base path on remote host i.e. /mnt/space/user1/work/ |
remote_port |
Remote SSH port (optional, uses default of your ssh configuration if empty) | |
subfolders_to_sync |
List of subfolders to local_folder to watch for changes (empty = sync all) | |
exclude_patterns |
List of glob patterns to exclude (e.g. ["*.log", "__pycache__"]) |
|
key_file |
Path to SSH private key (optional) | |
password_file |
Path to file containing SSH password (optional) | |
timeout |
SCP command timeout in seconds (default: 10) |
|
upload_error_notification |
How to display upload errors: "popup" (inline popup), "dialog" (modal dialog), or "" (disabled) |
Authentication
Supports three authentication modes:
- Key file (
key_fileset) →scp -i /path/to/key ... - Password file (
password_fileset) →sshpass -f /path/to/pass scp ... - Default (neither set) → uses SSH agent or
~/.ssh/id_rsa
Requirements
sshpass(only if using password authentication)
Platform Support
| Platform | Status |
|---|---|
| Linux | Tested |
| macOS | Should work (untested) |
| Windows | Requires OpenSSH (Win10+), password auth not supported |