Recover former state of Matlab Editor

74 views (last 30 days)
Matt J
Matt J on 24 Feb 2021
Edited: Matt J on 1 Mar 2021
I had quite a few files open in the Matlab Editor, but then inadvertently closed the editor window. Is there any way to re-open the editor in a way that recovers its state from before I closed it, i.e., so that the files I had open are automatically open in the editor again, without me having to open them manually, one by one. It seems like the editor does have some memory of its state in some situations, because for example when I close and restart Matlab, the editor does come up again in its former state.

Accepted Answer

Mario Malic
Mario Malic on 24 Feb 2021
Edited: Mario Malic on 24 Feb 2021
Hi Matt,
Actually, Yair Altman has already mentioned this https://undocumentedmatlab.com/articles/recovering-previous-editor-state
It looks like the info about the editor data, at least on Windows, is kept in file MATLABDesktop.xml
winopen(prefdir)
On the bottom of the file you can find the files that will be opened the next time you start the MATLAB. When you close the file in Editor, the xml file automatically updates and then this .m file won't be opened in Editor the next time.
There's also file MATLABDesktop.xml.prev, which probably stores the same file but from the previous version. Which might be what you're looking for. If you opened/closed MATLAB more than twice with different files open in Editor, then data about previous files is probably lost.
  1 Comment
Matt J
Matt J on 1 Mar 2021
Edited: Matt J on 1 Mar 2021
Thanks, Mario.
Neither of the prefdir/MATLABDesktop.xml files seem to remember anything once the editor window is closed but prefdr/MATLAB_Editor_State.xml does remember!
It appears to be a log of the last several dozen opened files. It doesn't tell you which files co-existed in the Editor at the same time, but it as at least possible to parse MATLAB_Editor_State.xml to re-open the last 5 (or however many) files that were visited.

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!