in reply to Perltidy: an option to keep sub($args){} as a single line?

Really? I don't get that. What version of perltidy? I get this with both v20120714 and v20160302
$fs->traverse('/foo')->filter( sub ($name, $dir) { $name !~ /^\./; } ) +; $fs->traverse('/foo')->filter( sub { $_[0] !~ /^\./; } ) +;