I'm wondering if it's possible to do a search and replace in Sublime Text 3 to add spaces around brackets in multiple files.
For example, I need to convert this in multiple files:
$var = function($par1, $par2);
to:
$var = function( $par1, $par2 );
Any ideas? If so, how can I do it?
Thanks in advance