Modifying this to output Data::Dumper stuff (good idea) would be straight-forward.
Here's my attempt. I'd be very grateful if someone who knows Emacs could actually try it.
(defun perl-dbg (name)
"Insert a debugging print statement"
(insert "use Data::Dumper qw( Dumper );\nwarn Dumper [ ]\n")
(search-backward "[ ")
I'm not sure what document templates are for.
The idea is that you hit a key, and the editor pastes in a template from another file.
Any suggestions for how to do that would be greatly appreciated.
For indenting, I have this inside (custom-set-variables):
I'm guessing:
'(cperl-close-paren-offset -4)
Outdent 4 columns on a closing paren?
'(cperl-continued-statement-offset 2)
Indent 2 columns when a statement wraps?
'(cperl-indent-level 4)
Indent four columns per indentation level?
'(cperl-indent-parens-as-block t)
Indent parens like blocks?
'(cperl-label-offset 0)
Put labels in the zeroth column?
'(cperl-tab-always-indent t)
Convert tabs to spaces?
Could someone knowledgeable confirm (or correct) those guesses?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.