Bill Wendling
Bill Wendling
Okay. I added a new knob `SPLIT_ARGUMENTS_WHEN_COMMA_TERMINATED` which should do what you want. Please try it out on top-of-tree.
For some reason, I thought that you didn't want the trailing bracket on its own line. :-/ Give it a try now.
This will be another change. Should this split happen even with a single-element tuple? ``` python TUPLE = ( 'element', ) ```
Not just yet. I may be able to get to it in a few days...
I added this commit, which does this for lists. Please give it a try. ``` To https://github.com/google/yapf.git 93885e4..8e3434a master -> master ```
I've been on a vacation for the past week, so I wasn't able to focus on this too much. I looked at this a bit, and I'm not 100% sure...
I'm not a "tabs" guy, so I need to ask more about what you need. Should the tabs in the continuation indent be the same number as the value of...
I'm not above holy wars, but we need to support the feature. ;-) I think I understand what you want then. I'm going to create a branch and let you...
If they're not spaces though all of the code alignment will fail. Is that the correct behavior? (I'm not a tab user...)
Are you sure the `E101` error means that there are spaces after a tab (used for continuation indentations like here), or that you have something like: `\t \t`? The meaning...