slow code editor, how can I speed it up?
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (3 件)
Sean de Wolski
2013 年 1 月 18 日
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 件のコメント
Andrew Drake
2013 年 8 月 27 日
put "exit" as your first line while editing
1 件のコメント
Rik
2019 年 1 月 8 日
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
2020 年 7 月 29 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!