SlickEdit Community
SlickEdit Product Discussion => SlickEdit® => Topic started by: lambertia on June 08, 2007, 02:26:00 AM
-
Hi.
"Unsurround the block" does not move the ident level of the comments (at least for me). This ocurrs with comment wrapping on or off. For example, starting with:
{
//
// Single values take precedence.
//
resultp = SingleSearch(value);
if (!resultp)
{
//
// Next try a range search.
//
resultp = RangeSearch(value);
if (!resultp)
{
//
// Use the default contents.
//
resultp = &vDefaultContents;
}
}
return (*resultp);
}
If I unsurround this I end up with:
//
// Single values take precedence.
//
resultp = SingleSearch(value);
if (!resultp)
{
//
// Next try a range search.
//
resultp = RangeSearch(value);
if (!resultp)
{
//
// Use the default contents.
//
resultp = &vDefaultContents;
}
}
Cheers,
--
Greg.
-
Seems that this still applies to v12.0.3 :(
@SlickTeam: Any chance to get a hotfix for that ?
HS2
-
I have filed a change request for this and assigned it to our next release. I can't say when this will be fixed or whether a hot fix is possible.
-
Thanks Scott, it's ok to know that it will be fixed sooner or later.
Although unsurround is very cool I'm not using it every day (in contrast to surround-with).
HS2