Author Topic: Beautify  (Read 4726 times)

mreaves

  • Community Member
  • Posts: 13
  • Hero Points: 0
Beautify
« on: November 28, 2007, 08:36:19 AM »
First off, I just started using SlickEdit in place of Codewright, and SlickEdit rocks.

With Beautify, would it be possible to pad parameters and operators with spaces? For example the following...

function_1(x,y,obj);
function_2((x+1),(y+1),obj,flags);

Would be changed to...

function_1( x, y, obj );
function_2( ( x + 1 ), ( y + 1 ), obj,flags );

Visual Studio does this after you hit return, but I'd settle for just making this part of the beautify process within SlickEdit.
« Last Edit: November 28, 2007, 08:43:03 AM by mreaves »