我怎樣才能perltidy配置長格式,如果語句是這樣的:perltidy格式複雜
if (
('this is an example' =~ /an.*example/ and 1 * 2 * 3 == 6) or
('hello world' =~ /world/ and 6 = 3 * 2 * 1)
) {
print "hello\n";
}
或類似這樣的
if (
('this is an example' =~ /an.*example/ and 1 * 2 * 3 == 6)
or ('hello world' =~ /world/ and 6 == 3 * 2 * 1)
) {
print "hello\n";
}
EDIT1:perltidyrc
--maximum-line-length=100
--indent-columns=4
--default-tabsize=4
--continuation-indentation=4
--closing-token-indentation=0
--no-indent-closing-brace
--paren-tightness=2
--square-bracket-tightness=2
--block-brace-tightness=0
--trim-qw
--nospace-terminal-semicolon
--nospace-for-semicolon
--indent-spaced-block-comments
--ignore-side-comment-lengths
--cuddled-else
--no-opening-brace-on-new-line
--no-opening-sub-brace-on-new-line
--no-opening-anonymous-sub-brace-on-new-line
--no-brace-left-and-indent
--blanks-before-comments
--blank-lines-before-subs=1
--blanks-before-blocks
--maximum-consecutive-blank-lines=1
編輯2:想法是在第一個(
之後有一個新行,並且最後一個)
與{
在一個新行中。如果這是不可能的,任何其他建議更好的格式將不勝感激。
如果語句是多行的,是否有方法在外括號之前/之後添加空格? (p.s.我添加了我的perltidyrc,我刪除它們) – bliof
@bliof,不,用於樣式塊的選項非常有限。 – titanofold