You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think remote save should either automatically trigger a save via view.run_command('save'), or save should trigger a remote save automatically (you can use an EventListener with on_post_save for this)
The text was updated successfully, but these errors were encountered:
Due to the fact that remote editing is done with pscp, it could be slow to upload the file after every change, especially with large files or a slow connection. Some of my files take 15 seconds to upload due to my slow connection. But for smaller file or a fast connection, this could be useful.
I think this should be added as an option, but not as default.
you can upload the file asynchronously - it doesn't need to block the sublime UI.
just use the subprocess module, and keep track of uploads. if you trigger a second upload before the first is finished, you can just terminate the first pscp process.
as for linux/osx support, just use the 'scp' binary usually provided in PATH
I think remote save should either automatically trigger a save via
view.run_command('save')
, or save should trigger a remote save automatically (you can use an EventListener with on_post_save for this)The text was updated successfully, but these errors were encountered: