# A quote delimiter which is not a container will not have
# a cti value defined. In this case use the style of a
# paren. For example
- # my @words = (
- # qw/
+ # my @fars = (
+ # qw<
# far
# farfar
# farfars far
- # /,
+ # >,
# );
if ( !defined($cti) && length($tok) == 1 ) {
+
+ # something other than ')', '}', ']' ; use flag for ')'
$cti = $closing_token_indentation{')'};
+
+ # But for now, do not outdent non-container qw
+ # delimiters because it would would change existing
+ # formatting.
+ if ( $tok ne '>' ) { $cti = 3 }
}
# A non-welded closing qw cannot currently use -cti=1
);
This update makes closing qw quote terminators follow the settings for their
-corresponding container tokens as closely as possible. In addition, for
-closing quote tokens which are not containers, the setting for a closing paren
-will now be followed. For example
+corresponding container tokens as closely as possible. For a closing '>'
+the setting for a closing paren will now be followed. Other closing qw
+terminators will remain indented, to minimize changes to existing formatting.
+For example ('>' is outdented):
@EXPORT = (
- qw#
+ qw<
i Re Im rho theta arg
sqrt log ln
log10 logn cbrt root
cplx cplxe
- #,
+ >,
@trig
);
-This update was added 18 Dec 2020.
+but (';' remains indented):
+
+ @EXPORT = (
+ qw;
+ i Re Im rho theta arg
+ sqrt log ln
+ log10 logn cbrt root
+ cplx cplxe
+ ;,
+ @trig
+ );
+
+This update was added 18 Dec 2020 and modified 24 Dec.
=item B<Update manual pages regarding issue git #50>