Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text 2 - Auto Refreshing

Tags:

sublimetext2

I'm using the Sublime Text 2. My problem is that when I create a new file or folder, while using submline. It does not refresh and update immediately.

I have to quit out of sublime and restart it, I use the terminal to open folders. Once I reopen it then, I see the new file or folder I created.

I have looked for solutions, but I could not find one with an answer.

Thanks

like image 773
jmoon90 Avatar asked Oct 16 '13 18:10

jmoon90


People also ask

How to Auto refresh Sublime Text?

For those who are not yet familiar with Sublime Text, all the settings are specified with JavaScript objects, including the keys combination. As we can see from the above syntax, the Browser Refresh is performed with the key combination of Command + Shift + R.


1 Answers

Instead of auto refresh we can do this

  • Open Sublime Text.
  • Select Preferences from the top menu and click Key Bindings – User.
  • Add the following entry between the brackets.

    { "keys": ["f5"], "command": "refresh_folder_list" }

You should be able to refresh the folders with F5.

like image 94
vimal1083 Avatar answered Oct 25 '22 02:10

vimal1083