This is not a bug, but a question. Is there a way to remove spaces between a function call and its parameter list? I saw unpad-paren but would like to keep the space after control flow operators like “if (true)”
To illustrate your question, if you wish to change
if (c) { foo (a, b); }
into
if (c) { foo(a, b); }
This is possible by using both, pad-header and unpad-paren.
pad-header
unpad-paren
If you meant something else, please explain in more detail. Thanks a lot!
Thanks, I'll give that a try. Max
Log in to post a comment.
To illustrate your question, if you wish to change
into
This is possible by using both,
pad-headerandunpad-paren.If you meant something else, please explain in more detail. Thanks a lot!
Last edit: w-peuker 2024-02-14
Thanks, I'll give that a try.
Max