Can you fold a highlighted selection of code?
2 次查看(过去 30 天)
显示 更早的评论
I have enabled cell folding with the double percent signs, %%.
I can click each individual +/- on the left hand side of my script window to expand or fold cells now. I can also right click the window and click 'Fold' or 'Fold all'
I want to fold all cells in a section of a few thousand lines of code in the middle and leave open the rest. There are many cells in this section making the manual process annoying. I was hoping I could highlight a large amount of code with the cursor, and fold any cells in it.
If I try to highlight that large section and click Fold , it only folds one (The last one)
If I highlight the section and click Fold All, everything in the file folds, including things I haven't highlighted.
Is there a way to only fold the cells I have highlighted?
1 个评论
Matt J
2015-10-2
编辑:Matt J
2015-10-2
I agree that this is very much needed. I'd also like to be able to fold all the functions in a methods block of a classdef file by clicking on the block in some way. Currently, when you fold a methods block, you see this,
classdef myclass
methods ... %folded
end
In addition to that, I'd also like to have a button that folds as follows, where I can see a synopsis of what functions are present in the methods block, and their signatures:
classdef myclass
methods
function obj=F1(arg1,arg2) ...
function obj=F2(arg1,arg2) ...
function obj=F3(arg1,arg2) ...
function obj=F4(arg1,arg2) ...
end
end
回答(1 个)
Sean de Wolski
2014-12-1
编辑:Sean de Wolski
2014-12-1
I think the bigger question is why do you have more than 1000 lines in a file?
Consider breaking it out into smaller manageable functions (which could be folded as a whole function) and which can be in a separate file once they're working..
2 个评论
per isakson
2014-12-1
编辑:per isakson
2014-12-1
"why do you have more than 1000 lines in a file" [...] "smaller manageable functions"   I'm not convinced that's always true. I have huge classdef-files and huge files with unit tests. I use folding systematically and I would benefit from better control over the folding. Now it requires far too many mouse-clicks.
Available tools matters. Search and Search&Replace for one works better with one huge file.
My code evolves through experiments and refactoring and during that process huge files present advantages.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Software Development Tools 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!