slow code editor, how can I speed it up?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (3)
Sean de Wolski
il 18 Gen 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 Commenti
Andrew Drake
il 27 Ago 2013
put "exit" as your first line while editing
1 Commento
Rik
il 8 Gen 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
il 29 Lug 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 Commenti
Vedere anche
Categorie
Scopri di più su Startup and Shutdown in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!