Reputation: 21118
So I have reinstalled my Ubuntu to newer version and then I migrated sublime 3 configuration that I used. Everything seem to be saved like it was before, but it looks like sublime just do not save a session that it was at.
Every time I close sublime, when I open, I always get one file opened that I had used before at some time. It does not matter what I had opened recently, it always opens same file.
To be specific, it is bashrc
file (if that matters at all).
Now if I reopen sublime, then close bashrc
file, then open project, when I reopen again, I do not even see that project was added. I can't use alt+ctrl+p, because it does not remember that I even opened any project.
I looks like session is fixed on one state somehow.
Sublime build I'm using is: 3126
Update:
When migrating sublime settings, I copied this directory sublime-text-3/Packages/User
(that comes from ~/.config/sublime-text-3/Packages/User
). It had settings files and some custom snippets.
Upvotes: 0
Views: 1218
Reputation: 3991
I ran into this same issue on linux. From https://web.archive.org/web/20191102071813/http://docs.sublimetext.info/en/latest/getting_started/install.html
run the following command:
sudo chown -R $USER:$USER /home/$USER/.config/sublime-text-3
Upvotes: 2