ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Project Sync

by justin-reid ALL

A Sublime Text 2/3 plugin to enable the syncing of local files to another location (remote or local).

Details

Installs

  • Total 3K
  • Win 2K
  • Mac 910
  • Linux 604
May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30
Windows 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 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 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 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Description

A Sublime Text 2/3 plugin to enable the syncing of local files to another location (remote or local).

Tested and verified working on Windows and Ubuntu, realistically it should work on most any OS, there is nothing really system-specific about this plugin.

Requires scp and rsync binaries.

Installation

The recommended method is by using Sublime Package Manager See Here (the package name is 'Project Sync'). Otherwise, you can clone the repository yourself.

Usage

There is a dev_sync command that will push your current project directory (as specified by the “source” path in the settings file) to the specified destination. You can Run this by mapping a key-stroke (described below) or by right-clicking on a file and selecting 'Project Sync: Perform Full Project Sync'. This is only required once per project, after that the individual files will transfered be on save.

Key Mapping

There is only one command that is called via key-stroke, the dev_sync command.

Add something like this to your keymap:

#!JSON

{ "keys": ["alt+s"], "command": "dev_sync" }

Settings

Settings Can be accessed through 'Preferences -> Package Settings -> Project Sync -> Settings'. Work with the included template, it should be fairly self-explanatory (I hope).

Things of Note

  • You will need password-less SSH enabled to use this plugin (google it)
  • paths in the settings file are case-sensitive; be sure to escape window's paths as per the example settings file.
  • if you're having problems getting the plugin working, enable the debug setting and watch the sublime console (ctrl+). All commands will be printed to the console, you can try running them manually to see what is happening.
  • Any fatal errors from ssh/rsync will be displayed in a popup window, read them and act accordingly.
  • When syncing a large amount of files to a remote server (with the dev_sync command) it may look like sublime has hung/crashed, it will begin responding again when the sync is complete, be patient as this can take a long time depending on the speed of your connection and the number of items to transfer.