0
Fixed
OS X - Changing .sublime-settings file does not update automatically the changes
Hello,
I've put my Packages/User directory into Dropbox and made a sym link to it so I could have my settings on all my Macs. The thing is, when I change or create a new User setting SF2 doesn't load when I save I've to restart the app.
Is this the correct behavior?
Answer
0
Answer
Fixed
Jon Skinner 13 years ago
This should be fixed in the current dev build (at http://www.sublimetext.com/dev), and will be in the next beta
Seems like this is been ignored. But I'll post the script I use the create the symlink:
sublimeDir="$HOME/Library/Application Support/Sublime Text 2/Packages/User"
if [ -d "$sublimeDir" ]; then
if [ -L "$sublimeDir" ]; then
rm "$sublimeDir"
else
rmdir "$sublimeDir"
fi
fi
ln -s "$HOME/Dropbox/Apps/SublimeText/User/" "$sublimeDir"
Answer
Fixed
This should be fixed in the current dev build (at http://www.sublimetext.com/dev), and will be in the next beta
Customer support service by UserEcho