slow code editor, how can I speed it up?
1 view (last 30 days)
Show older comments
I have a m file generated by GUI, which has >10,000 lines. To have the codes easier to circulate among collaborators, I wrote all sub functions in a single m file. It turns out way too slow to edit codes (several seconds of latency while typing).
after the Java Heap Memory is increased to 500 MB, the problem is partially solved. Yet the latency still exists.
Is there any efficient way to solve this issue besides separating functions to different m files?
0 Comments
Answers (3)
Sean de Wolski
on 18 Jan 2013
One other thing you can do is turn off the Code Analyzer (Preferences-> Code Analyzer)
This will help with the latency but does mean you don't get up-to-date code recommendations.
0 Comments
Andrew Drake
on 27 Aug 2013
put "exit" as your first line while editing
1 Comment
Rik
on 8 Jan 2019
To be fair, once you have a 10k line m-file, you should know what this does. So assuming good faith I would say this is merely a joke.
But wait, it goes deeper: on a similar thread (which you have not flagged btw) someone actually tried it. It turns out that it is an easy way to disable the m-lint while writing. When reading this answer in that light, it actually works: if you put exit on the first line while editing that would indeed solve the problem of the code analyzer slowing down the editor.
Of course I don't know if this is still true in newer releases.
I will not remove your flag, but I did want to offer a different perspective.
Rasul Satymov
on 29 Jul 2020
Add %{ below the code you're editing. For example:
%you're editing this code at the moment
%{
%the rest of your code here
This basically tells MATLAB to treat the code below as a block of comments.
I'm currently editing >10,000 line code, and if I need to edit, let's say, line 4592, I put %{ on line 4600 and it significantly improves IDE response time.
0 Comments
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!