'F' matches if 'f' does not.
'w' matches if either 'k' or 'f' match.
'W' matches if 'w' does not.
- '*' always matches
So for example the the following parameter will keep breaks after opening function call
parens:
'f' matches if the previous token is a function other than a keyword.
'F' matches if 'f' does not.
'w' matches if either 'k' or 'f' match.
- 'W' matches if 'w' does not.
- '*' always matches</code></pre>
+ 'W' matches if 'w' does not.</code></pre>
<p>So for example the the following parameter will keep breaks after opening function call parens:</p>