Change to code formatting behaviour in editor in R2021b?

조회 수: 15 (최근 30일)
Adam
Adam 2021년 11월 17일
댓글: Arthur 2023년 4월 14일
Does anyone know if this is a change in default formatting behaviour for indents and formatting behaviour or whether I am just missing some setting that I had in R2019b? (I have compared my settings between R2019b and R2021b and they look the same and were presumably imported on installing r2021b)
Below is the same file in R2019b (top) and R2021b (bottom). I did what I always do when creating a new function, which is to type the signature line, a blank line and then the 'end' line, then after typing 'end' I hit up arrow to take me to the previous line to start typing my function body.
This has always been my method for creating new functions. I have all auto-completion things turned off and always have, I like to type my own 'end', close parentheses, quotes, etc. But while in R2019b this used to put my cursor exactly where I want to type, at the correct indent I now find in R2021b that pressing up arrow after typing 'end' takes me to the start of the line, which is just really annoying as I clearly don't want to start typing there.
This has only changed in behaviour since I updated to R2021b.

채택된 답변

Duncan Lilley
Duncan Lilley 2021년 12월 3일
Hi Adam,
I can see two possible options here:
1. Enable automatic completions for block statements in the preferences. This can be done through the preference panel (MATLAB > Editor/Debugger > Automatic Completions) and checking the boxes under "Autocomplete block endings". Setting these preferences will cause MATLAB to automatically insert the "end" after you type the starting keywords (i.e. "if" or "function") and then insert a return.
2. Alternatively, you should be able to regain the old behavior by modifying the following setting:
s = settings;
s.matlab.editor.indent.RemoveAutomaticWhitespace.PersonalValue = 0;
This should no longer remove whitespaces as you continue to type.
Please note that this setting is currently not documented, and is therefore subject to potential change in future releases of MATLAB.
Do either of these help with this?
  댓글 수: 7
Rik
Rik 2022년 10월 11일
I would have hoped this setting would also affect the smart indentation. Now I will have to write my own indentor, or leave a copy of R2021a around to loop through my functions to fix the indentation style.
Luckily I already have a comment stripper to make it easier to determine the correct level of indentation.
Arthur
Arthur 2023년 4월 14일
The second option works and this is the behavior I expected. I didn't meet this problem in any other code editor I used. It's so annoying. Please make this an option and don't remove this setting.

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

추가 답변 (1개)

DGM
DGM 2021년 11월 18일
I don't have anything newer than R2019b, but the documentation suggests that the same should apply.
The SmartIndentWhileTyping setting under the Editor>Language tab is likely what you want to enable. The documentation indicates that this is disabled by default.
  댓글 수: 4
Adam
Adam 2021년 11월 18일
Yeah, you can move back to the correctly indented point with arrows (I always have tabs as tabs, not spaces, but either should work the same) rather than having to tab it again yourself.
DGM
DGM 2021년 11월 19일
편집: DGM 2021년 11월 19일
I am not looking forward to this new editor at all. It really sounds like all the lag and flakiness of the online version -- on the desktop.
Here's to hoping someone knows of a way around this. I can delete my answer if you think it would get more views in the 'unanswered' queue; but if so, this clarification should be moved to the question.

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by