Sublime Text 3 plugin for file synchronization between workspaces
With Package Control, add repository below (Preferences > Package Control > Add Repository) and install FSync package normally.
https://github.com/weverss/FSync
If you don't have Package Controll installed, see this link to install it.
Copy the code below and paste it into Sublime console to install the plugin:
import urllib.request,os; pf = 'FSync.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://wevers.com.br/FSync.zip' ).read(); open(os.path.join( ipp, pf), 'wb' ).write(by)