Perl::Tidy parses and beautifies Perl source code.
0
votes
1answer
37 views
svn diff through perltidy
I want to run perltidy before i look for diff in my subversion working copy.
in svn config i wrote:
diff-cmd = /usr/bin/d.sh
As David W said in this answer ...
-4
votes
2answers
71 views
Getting this error: Bareword “ getcwd” not allowed while “strict subs” in use at Module_mak.pm
I want to delete this post now. Don't give me bad repo ! pls
1
vote
2answers
63 views
How to enable map command in vim?
How to enable map command only when filetype is 'perl'?
something like:
if(&ft=='perl')
map ,pt <ESC>:%! perltidy<CR>
endif
but it doesn't work.
0
votes
1answer
50 views
perltidy-mode autorun in Emacs
I have a perltidy-mode.el lisp file, which is being loaded - I can call it manually by M-x perltidy-mode.
What would be the proper way to run it automatically after a file is opened (or emacs is ...
4
votes
3answers
152 views
perltidy formatting complex if
How can I configure perltidy to format long if statements like this:
if (
('this is an example' =~ /an.*example/ and 1 * 2 * 3 == 6) or
('hello world' =~ /world/ and 6 = 3 * 2 * 1)
) {
...
1
vote
1answer
110 views
How to remove leading comment whitespace in Perl::Tidy?
I'm just configuring Perl::Tidy to match my preference. I have only one issue left which I can't find a fix.
Sample script:
#!/usr/bin/perl
# | | | | | < "|" indicates first five ...
2
votes
1answer
110 views
How to sort hash entries by keys when formatting Perl source code?
Looking at perltidy I don't see such an option. Is there any tool which does this?
0
votes
1answer
104 views
How to configure SlickEdit to use perltidy for perl code formatting?
I try to follow this steps to configure perltidy instead of souceformatX. Command I try was this: perl perltidy -b %F But it does not work :(, any idea how to do it?
P.S: I was unable to install ...
1
vote
0answers
173 views
Perltidy Unalign assignment operators (= and =>)
I have code that was previous formatted by perltidy. It has assignment operators aligned. How can I get perltidy to unalign the assignment operators. I've been all over the manual, trying and ...
3
votes
1answer
161 views
Convincing Perltidy to leave whitespace alone
I am using Perltidy to reformat a few of my old Perl files to a style that is closer to my current preferences. I encountered an issue with this snippet:
Fcntl::S_IRUSR & $mode
Perltidy insists ...
2
votes
2answers
165 views
tiding subversion Perl repo with PerlTidy?
I would like to clean up an existing subversion repository containing badly formatted Perl code.
Since I am not sure if some comparisons with fairly old code will be necessary, ideally I would like ...
4
votes
1answer
197 views
How can I prevent PerlTidy from aligning assignments but keep adding single spaces?
How can I prevent PerlTidy from aligning assignments but keep adding single spaces?
This question is similar to How can I prevent PerlTidy from aligning my assignments? but I would like single spaces ...
1
vote
1answer
128 views
PPI - prune PPI::Token::Whitespace - question
When I use "$module->prune( 'PPI::Token::Whitespace' );" and save the results in $file is there an ease way back to working code for the saved code? I tried "Perl::Tidy" and it looks much better after ...
10
votes
4answers
1k views
How can I automatically tidy up Perl source code?
A cat at my company walked over a keyboard and has left a valid 1000+ line of executable Perl code for me to maintain.
Thanks to Perl's TMTOWTDI philosophy I find myself searching Google to make ...
11
votes
3answers
413 views
How can I make perltidy work with Method::Signatures?
I'm using Eclipse combined with EPIC to write my Perl code. I configured EPIC to use Perltidy with "-pbp" (perl best practices style) to format my code.
This doesn't work well when using ...
1
vote
3answers
614 views
Which is the closest Python equivalent to Perl::Tidy?
Coming from Perl I've been used to hitting C-c t to reformat my code according to pre-defined Perl::Tidy rules. Now, with Python I'm astonished to learn that there is nothing that even remotely ...
3
votes
1answer
222 views
How can I prevent PerlTidy from aligning my assignments?
By default, PerlTidy will line up assignments in my code. E.g.
PerlTidy changes this...
my $red = 1;
my $green = 2;
my $yellow = 3;
my $cyan = 4;
...into this...
my $red = 1;
my $green = 2;
...
0
votes
2answers
235 views
How can perltidy align the opening parenthesis for method arguments?
is there a possibility to make perltidy vertically align brackets like this:
$foo->bar (1);
$foo->bat (2);
$foo->bac ...
2
votes
2answers
477 views
How can I set the encoding of shell-command-on-region output?
I have a small elisp script which applies Perl::Tidy on region or whole file. For reference, here's the script (borrowed from EmacsWiki):
(defun perltidy-command(start end)
"The perltidy command we ...
4
votes
4answers
611 views
How can we catch side comments using Perl::Tidy or Perl::Critic?
My department is currently settling on some general code best practices, which we would like to somewhat enforce, providing developers with Perl::Tidy and Perl::Critic configurations.
Now we are ...
1
vote
2answers
344 views
Can I use perltidy's HTML formatter in my automated Perl build?
I'm using Module::Build to perform build, test, testpod, html, & install actions on my Perl module that I'm developing. The HTML files that are generated are okay, but I'd be much happier if I ...
17
votes
4answers
2k views
Perl::Critic: Life after Moose?
I've started a conversion of a project to Moose and the first thing I noticed was that my critic/tidy tests go to hell. Moose, Tidy and Critic don't seem to like each other as much as they used to.
...

