how to tell Matlab smart indent not to move my comments around?

조회 수: 2 (최근 30일)
Nasser M. Abbasi
Nasser M. Abbasi 2016년 1월 18일
댓글: KJ N 2018년 11월 5일
using Matlab 2015a, is there an option to tell Matlab editor not to mess with my comments when doing smart indent? For example, if I write this
x = 1; %this is comment
%this is follow up
Now when I do smart indent, the above is reformatted as
x = 1; %this is comment
%this is follow up
Which I do not want. I looked at preferences->editor->Language->comment formatting and no matter what option I choose, it does not make a difference, it still does the same with the comments.
This very annoying, it means I have to go fix all the comments each time.
  댓글 수: 1
Star Strider
Star Strider 2016년 1월 18일
I would submit that to MathWorks as an Enhancement Request. Use the same page you would use to report a bug. Include the URL to this thread in your message so you don’t have to repeat it all.

댓글을 달려면 로그인하십시오.

답변 (2개)

Stephen23
Stephen23 2016년 1월 18일
편집: Stephen23 2016년 1월 20일
This is the simplest solution, guaranteed to work always, no custom settings required:
x = 1; % this is comment
% % this is follow up

Image Analyst
Image Analyst 2016년 1월 18일
I think you'd have to write your own routine to indent it the way you want. I don't think there's anyway to know, for an arbitrary line of code that that it's working on, whether or not to slam the comment to the left. Even if it did recognize that there was a percent symbol right above it on the prior line, how would it know that that line you wanted to leave alone, but some other line you might want to shift left because they're unrelated? I don't think it could know that with certainty, and the answer might change from one pair of lines to another.
  댓글 수: 2
Nasser M. Abbasi
Nasser M. Abbasi 2016년 1월 18일
I simply want Matlab to leave a line with only a comment in it alone. It does not have to know anything really about the earlier line. If a line has only a comment on it, just do not touch the this line and skip it, that is all.
KJ N
KJ N 2018년 11월 5일
I agree that this is a feature that MATLAB really ought to have (at least with a customizable setting) that it currently does not have. Here's hoping it will someday be improved that way.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by