When I close texmaker all the configurations I made reset and go back. Also the files I worked on don't show up in "open recent".
Has anyone had similar experience or a idea of how to solve this issue?
I am using Texmaker 4.1 on Ubuntu 14.04.
When I close texmaker all the configurations I made reset and go back. Also the files I worked on don't show up in "open recent".
Has anyone had similar experience or a idea of how to solve this issue?
I am using Texmaker 4.1 on Ubuntu 14.04.
I had the same problem after installing a new LTS version 18.04 on my laptop. For some reason I don't know, the read and write permission was only given to root by default. I solved the problem in changing the write permissions of the configuration file. This is done with the following command in a terminal:
sudo chmod ugo+rw .config/xm1/texmaker.ini
sudo chown $USER:$USER -R ~/.config
. – N0rbert Aug 01 '19 at 15:10