Subject: | delete-old-newlines selectively |
I want to be able to use delete-old-newlines in general, but there are certain patterns where I want to keep them, like:
method 'foo'
=> [ Int, Int ]
=> sub {
my ( $self, $x, $y ) = ( shift, @_ );
...;
};
So it would be nice to have something like:
--keep-old-newlines-before-tokens='=>'
Probably a corresponding keep-old-newlines-after-tokens too.