Can I undo tab closing in Matlab editor?

Many web browsers allow you to undo tab closing:

enter image description here

Can I undo tab closing in Matlab editor?

I am using R2014a on Windows 7.

+4
source share
1 answer

Not officially supported in MATLAB, but with a reference to Undocumented MATLAB there is a workaround.

MATLAB stores the state of the Windows desktop in a file with a name MATLABDesktop.xmlthat is in the users folder prefdir(preferences directory). You can repeat where it is in MATLAB by simply typing prefdiron the command line and pressing Enteror RETURN. Since you also use Windows, you can also do this to open a folder in MATLAB:

winopen(prefdir);

Windows, prefdir.

. , . , MATLABDesktop.xml.

, MATLAB MATLABDesktop.xml.prev prefdir. MATLAB R2014a Windows 7, , , !

, - , MATLAB, MATLABDesktop.xml, MATLABDesktop.xml.prev, MATLABDesktop.xml. MATLAB, .

+8

Source: https://habr.com/ru/post/1546385/


All Articles