davidvarga / MBeautifier

MBeautifier is a MATLAB source code formatter, beautifier. It can be used directly in the MATLAB Editor and it is configurable.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Differentiate between indexing and function call expressions

ojwoodford opened this issue · comments

In my code I like to leave spaces after commas in function calls, e.g.:

A = eye(3, 4);

However, in indexing expressions I don't like to leave spaces, e.g.:

b = A(:,1);

Is this feature feasible? Thanks.

Unfortunately it is not possible, please see #35.