-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow arbitrary spacing inside function calls #69
Comments
currently not, but I'm refactoring code. want to make it possible. |
If my formatter doesn't satisfy you, you can use
|
Ok thank you. I look forward to the refactoring! |
this feature complete by refactor branch, but it's still a few weeks before you see it |
see #80 similar feature is complete. p(1, 2, 3)
ppppp(1, 2, 3) different but similar length aaa(1, 2, 3)
bbb(1, 2, 3) or only same function call map(1, 2, 3)
map(4, 5, 6) The previous solution was to ignore white space in function calls, now I want to automatic align it |
Awesome, thank you! |
Hi! I would like to be able to align the arguments of multiple similar function calls. Here's an example:
Currently when I run the formatting it is changed to this:
Is it possible to tell the formatter not to touch the spaces inside function calls?
The text was updated successfully, but these errors were encountered: