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?
Asked
Active
Viewed 1,449 times
1 Answers
1
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.

Mikko Ohtamaa
- 82,057
- 50
- 264
- 435
-
So should it be like: Automatically save the file (my computer), then automatically reload the file without any prompt (other's computer) to achieve real-time editing? – Austin Imperial Jul 09 '15 at 06:11
-
I managed to automatically save the file every time I modify it using a Sublime Text plugin called [Auto-save](https://packagecontrol.io/packages/auto-save) and I turned `always_prompt_for_file_reload` to `false`. Thanks @MikkoOhtamaa ! – Austin Imperial Jul 09 '15 at 06:57