# Perltidy Change Log
- Added parameter --non-indenting-braces, or -nib, which prevents
- code which follows an opening brace marked with a special side comment,
- '#<<<', from indenting one level. For example,
+ code from indenting one level if it follows an opening brace marked
+ with a special side comment, '#<<<'. For example,
{ #<<< a closure to contain lexical vars
=item B<-nib>, B<--non-indenting-braces>
Normally, lines of code contained within a pair of block braces receive one
-extra level of indentation. If this flag is set, perltidy will look for
+additional level of indentation. If this flag is set, perltidy will look for
opening block braces which are followed by a special side comment, which is
B<#<<<> by default. If found, the code between this opening brace and its
corresponding closing brace will not be given the normal extra indentation
you can mark the opening braces with this special side comment.
Only the opening brace needs to be marked, since perltidy knows where the
-closing brace is.
+closing brace is. Braces contained within marked braces may also be marked
+as non-indenting.
This feature is on by default. If your code happens to have some opening
braces followed by '#<<<', and you don't want this, you can use B<-nnib> to
the string for starting a B<format-skipping> section. There is no confusion
because in that case it is for a block comment rather than a side-comment.
-The special side comment can be changed with the next
-parameter.
+The special side comment can be changed with the next parameter.
=item B<-nibp=s>, B<--non-indenting-brace-prefix=s>