Smart Indenting now Removes Whitespace
26 views (last 30 days)
Show older comments
Grant Giesbrecht
on 26 Aug 2022
Commented: Grant Giesbrecht
on 1 Apr 2024
In recent versions of MATLAB (I believe this behavior started with R2021a), the smart indent feature changed its behavior. The way it behaves in R2020b and earlier is, if your cursor is on a line that has been indented:
- If you press return one or more times, the cursor will be indented on the same level as the previous line.
- If you then click to a line that was previously smart-indented to the correct level, the cursor will be on that correct indentation level.
The way it behaves in R2022a is:
- (Same as R2020b) If you press return one or more times, the cursor will be indented on the same level as the previous line.
- If you then click to a line that was previously smart-indented to the correct level, the cursor will not be on the correct indentation level. It will have zero indentation, implying that the smart-indent features doesn't leave whitespace behind.
I find the behavior of the R2022a smart indentor to be very difficult to use, because it means going back and adding to indented code often requires you to manually hit tab a few times until your code is properly indented. This seems to largely defeats the purpose of automatic indenting. I've poked through settings looking for a way to restore R2020b indenting behavior, but cannot find an option to make it return to "correct" indenting.
Does anyone know how to restore the smart-indenting behavior to the R2020b behavior? I'm also curious if you know why this change was made; rather than shaking my tiny fist at the MATLAB gods in frustration, I'd like to know why this change can be benefitial to some users.
3 Comments
Andrew Robbins
on 1 Apr 2023
Moved: Matt J
on 2 Apr 2023
Hello, I want to echo how awful this feature is for some basic workflows. (I'm using R2022b)
One simple example is:
Say you want to start an if statement and you're already on the 3rd indent. I would do the following:
- Type "if <expr>"
- Press enter twice
- Type "end"
- Click up arrow once to start putting in the contents of the if statement
function myFunc()
for i = 1:5
if true
<no tabs>
end
end
end
And now you have to tab yourself or put some code there and smart indent manually. Earlier versions of MATLAB just worked. The indenting was correct to begin with, no tabbing or anything required.
Am I using this is some unique and niche way? I would LOVE to opt to the old system, not because fixing this costs a significant amount of time, but because it is so stupid and unnecessary.
Accepted Answer
goc3
on 22 Mar 2024
Release 2024a includes a setting for this!! The following code will stop smart indenting from removing white space:
s = settings;
s.matlab.editor.indent.PadEmptyLines.PersonalValue = 1;
More Answers (1)
Matt J
on 26 Aug 2022
Edited: Matt J
on 26 Aug 2022
This is just my suspicion but, in the Matlab editor, the tab key doesn't really seem to insert tab characters. It appears just to be a shortkey for inserting a certain number of space characters. As a result, it is not possible to backward tab in a single keystroke: when undoing indentation, you have to delete individual spaces.
Therefore, if you are inserting code into a blank line where you want indentation level 2 when the previous line has an indentation level of 3, it will cost you a lot more keystrokes to go backward from 3 than to start at an indentation level of 0 and hit the tab key twice.
The above argument ignores the possibility of doing Ctrl+[ to undo indentation, but I think control and escape sequences are considered more laborious and need to be weighted differently than single key sequences when evaluating the keystroke count.
4 Comments
Levi Blake
on 5 Jan 2024
"As a result, it is not possible to backward tab in a single keystroke: when undoing indentation, you have to delete individual spaces."
You do not need to delete individual spaces when undoing indentation. On windows you can remove however many spaces you use for indents by pressing shift + tab. Effectively, it's the reverse of using tab, and matches the behavior of many other programs such as Microsoft Word and OneNote.
Steven Lord
on 5 Jan 2024
This is just my suspicion but, in the Matlab editor, the tab key doesn't really seem to insert tab characters.
That depends on your preferences. See the Editor/Debugger Tab Preferences section on this documentation page.
See Also
Categories
Find more on Environment and Settings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!