Austin Imperial
Austin Imperial

Reputation: 119

Sublime Text 2/3 - real-time refreshing/updating file whenever someone edited it

I'm developing a project in Python using pair programming with someone on a separate laptop. I searched for tools that can help us with our project and saw Floobits. However, this plugin caused a lot of data usage and we have limited access to the internet. So I tried finding other options and managed to connect our laptops using shared folders. I used this tutorial (I'm using Ubuntu and my brother is using Windows). So my question is are there any way to refresh/update the file that we are editing every time someone edited just like Floobits so it will be like editing it in Real-tme?

Upvotes: 2

Views: 1711

Answers (1)

Mikko Ohtamaa
Mikko Ohtamaa

Reputation: 83348

Sublime Text writes the file to the disk only when you do Save. You can configure ST to reload the file from the disk, without any prompt, when it detects the disk file changes, assuming your (network) file system supports this kind of monitoring.

I am not sure if there are ST plugins which would stream the changes for live pair edit. I am quite sure Sublime Text API is not flexible enough to do this smoothly.

Upvotes: 1

Related Questions