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 908
  • Linux 603
Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 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 29 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
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 1 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 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 2 0 0 0 0 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.