Clear Filters
Clear Filters

How to keep folded sections folded when opening a script?

8 views (last 30 days)
When I am doing modifications on a script, I always have to fold the same sections over and over again. Is there a way that once you fold a section in your script and close that script, the next time you'll open it, the sections will stay folded?
(I'm using MATLAB R2022b)

Answers (1)

Anagha Mittal
Anagha Mittal on 17 Jul 2024 at 6:31
Hi,
I understand that you want to keep the folded sections folded when you reopen the scripts.
There is no built-in method to achieve this, however, you may try the following workaround steps by editing the "startup.m" file and using the matlab.editor settings.
Please add the following lines of code to the "startup.m" file:
s = settings;
s.matlab.editor.codefolding.FoldSections.TemporaryValue = 1;
To access the "startup.m" file, refer to the following link:
For more information regarding editor options, refer to the following libk:
Hope this helps!
Thanks!

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!