MATLAB-extension-for-vscode
MATLAB-extension-for-vscode copied to clipboard
Provide auto-coding of `end` keywords
Is your feature request related to a problem? Please describe.
When writing a function, loop, or an if-statement, the end keyword for the closing of the block should be automatically inserted, similar to in the MATLAB Editor.
Describe the solution you'd like
The end keyword should be automatically inserted. For example:
- Type
if true
if true% <-- cursor is here
- Press enter
if true
% <-- cursor is here
end